Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1060)

Unified Diff: Source/core/html/HTMLEmbedElement.idl

Issue 980703006: Sync HTML element interfaces E-F with the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/html/HTMLFieldSetElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLEmbedElement.idl
diff --git a/Source/core/html/HTMLEmbedElement.idl b/Source/core/html/HTMLEmbedElement.idl
index b07922dbf58a13fad449724589fa0007081d0abd..16cd9a6e04a6a8516211ad6105b206934e33dd16 100644
--- a/Source/core/html/HTMLEmbedElement.idl
+++ b/Source/core/html/HTMLEmbedElement.idl
@@ -18,21 +18,31 @@
* Boston, MA 02110-1301, USA.
*/
+// https://html.spec.whatwg.org/#htmlembedelement
+
[
Custom=LegacyCallAsFunction,
] 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();
-
+ // Subresource Integrity
+ // http://w3c.github.io/webappsec/specs/subresourceintegrity/
+ // FIXME: The spec does not extend HTMLEmbedElement.
[Reflect, RuntimeEnabled=SubresourceIntegrity] attribute DOMString integrity;
};
« no previous file with comments | « no previous file | Source/core/html/HTMLFieldSetElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698