Index: core/html/HTMLEmbedElement.idl |
diff --git a/core/html/HTMLEmbedElement.idl b/core/html/HTMLEmbedElement.idl |
index b07922dbf58a13fad449724589fa0007081d0abd..57595065e34a24ad45dae32e0b6327b1607a64aa 100644 |
--- a/core/html/HTMLEmbedElement.idl |
+++ b/core/html/HTMLEmbedElement.idl |
@@ -18,21 +18,28 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
+// https://html.spec.whatwg.org/#the-embed-element |
+ |
+// TODO(yukishiino): HTMLEmbedElement should not have [OverrideBuiltins]. |
[ |
Custom=LegacyCallAsFunction, |
+ OverrideBuiltins, |
] interface HTMLEmbedElement : HTMLElement { |
- [Reflect] attribute DOMString align; |
- [Reflect] attribute DOMString height; |
- [Reflect] attribute DOMString name; |
[Reflect, URL] attribute DOMString src; |
[Reflect] attribute DOMString type; |
[Reflect] attribute DOMString width; |
+ [Reflect] attribute DOMString height; |
+ [CheckSecurity=Node, RaisesException] Document? getSVGDocument(); |
+ // FIXME: The spec has a legacycaller any (any... arguments); crbug.com/465009 |
+ |
+ // obsolete members |
+ // https://html.spec.whatwg.org/#HTMLEmbedElement-partial |
+ [Reflect] attribute DOMString align; |
+ [Reflect] attribute DOMString name; |
+ |
+ // FIXME: None of these getters and setters are in the spec. |
[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); |
- |
- [CheckSecurity=Node, RaisesException] Document getSVGDocument(); |
- |
- [Reflect, RuntimeEnabled=SubresourceIntegrity] attribute DOMString integrity; |
}; |