summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLObjectElement.idl
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
commit1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c (patch)
tree46dcd36c86e7fbc6e5df36deb463b33e9967a6f7 /Source/WebCore/html/HTMLObjectElement.idl
parent32761a6cee1d0dee366b885b7b9c777e67885688 (diff)
downloadWebKitGtk-tarball-master.tar.gz
Diffstat (limited to 'Source/WebCore/html/HTMLObjectElement.idl')
-rw-r--r--Source/WebCore/html/HTMLObjectElement.idl28
1 files changed, 9 insertions, 19 deletions
diff --git a/Source/WebCore/html/HTMLObjectElement.idl b/Source/WebCore/html/HTMLObjectElement.idl
index 40355c7b2..68b350c8e 100644
--- a/Source/WebCore/html/HTMLObjectElement.idl
+++ b/Source/WebCore/html/HTMLObjectElement.idl
@@ -19,45 +19,35 @@
*/
[
+ CustomCall,
CustomNamedSetter,
JSCustomGetOwnPropertySlotAndDescriptor,
- CustomCall,
] interface HTMLObjectElement : HTMLElement {
readonly attribute HTMLFormElement form;
[Reflect] attribute DOMString code;
[Reflect] attribute DOMString align;
[Reflect] attribute DOMString archive;
- [Reflect] attribute DOMString border;
- [Reflect] attribute DOMString codeBase;
+ [Reflect, TreatNullAs=EmptyString] attribute DOMString border;
+ [Reflect, URL] attribute USVString codeBase;
[Reflect] attribute DOMString codeType;
- [Reflect, URL] attribute DOMString data;
+ [Reflect, URL] attribute USVString data;
[Reflect] attribute boolean declare;
[Reflect] attribute DOMString height;
- [Reflect] attribute long hspace;
+ [Reflect] attribute unsigned long hspace;
[Reflect] attribute DOMString name;
[Reflect] attribute DOMString standby;
[Reflect] attribute DOMString type;
[Reflect] attribute DOMString useMap;
- [Reflect] attribute long vspace;
+ [Reflect] attribute unsigned long vspace;
[Reflect] attribute DOMString width;
readonly attribute boolean willValidate;
readonly attribute ValidityState validity;
readonly attribute DOMString validationMessage;
boolean checkValidity();
- void setCustomValidity([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error);
+ [EnabledAtRuntime=InteractiveFormValidation] boolean reportValidity();
+ void setCustomValidity(DOMString error);
- // Introduced in DOM Level 2:
[CheckSecurityForNode] readonly attribute Document contentDocument;
-#if defined(ENABLE_SVG) && ENABLE_SVG
-#if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C
- [CheckSecurityForNode, RaisesException] SVGDocument getSVGDocument();
-#endif
-#endif
-
-#if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
- // Objective-C extension:
- readonly attribute URL absoluteImageURL;
-#endif
+ [CheckSecurityForNode, MayThrowException] Document getSVGDocument();
};
-