Index: core/html/HTMLObjectElement.idl |
diff --git a/core/html/HTMLObjectElement.idl b/core/html/HTMLObjectElement.idl |
index 02b1a80e923acf2c90c8f90830f082fcedd6a1e1..2393f057dd9220c51b8dcfb10d59dfc4c70d0263 100644 |
--- a/core/html/HTMLObjectElement.idl |
+++ b/core/html/HTMLObjectElement.idl |
@@ -19,25 +19,25 @@ |
*/ |
[ |
- CustomLegacyCall |
+ Custom=LegacyCallAsFunction, |
] interface HTMLObjectElement : HTMLElement { |
- readonly attribute HTMLFormElement form; |
- [Reflect, TreatNullAs=NullString] attribute DOMString code; |
- [Reflect, TreatNullAs=NullString] attribute DOMString align; |
- [Reflect, TreatNullAs=NullString] attribute DOMString archive; |
+ [ImplementedAs=formOwner] readonly attribute HTMLFormElement form; |
+ [Reflect] attribute DOMString code; |
+ [Reflect] attribute DOMString align; |
+ [Reflect] attribute DOMString archive; |
[Reflect, TreatNullAs=NullString] attribute DOMString border; |
- [Reflect, TreatNullAs=NullString] attribute DOMString codeBase; |
- [Reflect, TreatNullAs=NullString] attribute DOMString codeType; |
- [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString data; |
+ [Reflect, URL] attribute DOMString codeBase; |
+ [Reflect] attribute DOMString codeType; |
+ [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString data; |
[Reflect] attribute boolean declare; |
- [Reflect, TreatNullAs=NullString] attribute DOMString height; |
+ [Reflect] attribute DOMString height; |
[Reflect] attribute long hspace; |
- [Reflect, TreatNullAs=NullString] attribute DOMString name; |
- [Reflect, TreatNullAs=NullString] attribute DOMString standby; |
- [Reflect, TreatNullAs=NullString] attribute DOMString type; |
- [Reflect, TreatNullAs=NullString] attribute DOMString useMap; |
+ [Reflect] attribute DOMString name; |
+ [Reflect] attribute DOMString standby; |
+ [Reflect] attribute DOMString type; |
+ [Reflect] attribute DOMString useMap; |
[Reflect] attribute long vspace; |
- [Reflect, TreatNullAs=NullString] attribute DOMString width; |
+ [Reflect] attribute DOMString width; |
readonly attribute boolean willValidate; |
readonly attribute ValidityState validity; |
readonly attribute DOMString validationMessage; |
@@ -45,12 +45,11 @@ |
void setCustomValidity([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error); |
// Introduced in DOM Level 2: |
- [CheckSecurityForNode] readonly attribute Document contentDocument; |
+ [CheckSecurity=Node] readonly attribute Document contentDocument; |
[Custom, NotEnumerable] getter boolean (unsigned long index); |
[Custom] setter boolean (unsigned long index, Node value); |
[Custom, NotEnumerable] getter Node (DOMString name); |
[Custom] setter Node (DOMString name, Node value); |
- [CheckSecurityForNode, RaisesException] SVGDocument getSVGDocument(); |
+ [CheckSecurity=Node, RaisesException] SVGDocument getSVGDocument(); |
}; |
- |