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

Unified Diff: core/html/HTMLEmbedElement.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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 | « core/html/HTMLElement.idl ('k') | core/html/HTMLFieldSetElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « core/html/HTMLElement.idl ('k') | core/html/HTMLFieldSetElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698