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

Unified Diff: core/html/HTMLAppletElement.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/HTMLAnchorElement.idl ('k') | core/html/HTMLAreaElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLAppletElement.idl
diff --git a/core/html/HTMLAppletElement.idl b/core/html/HTMLAppletElement.idl
index 283e205ffdfc65c70da9fc22d35481e5a6e57f17..d337bfb45495b884281df86a9bba3a179dd68163 100644
--- a/core/html/HTMLAppletElement.idl
+++ b/core/html/HTMLAppletElement.idl
@@ -18,8 +18,11 @@
* Boston, MA 02110-1301, USA.
*/
+// https://html.spec.whatwg.org/#the-applet-element
+
+// TODO(yukishiino): HTMLAppletElement should not have [OverrideBuiltins].
[
- Custom=LegacyCallAsFunction,
+ OverrideBuiltins,
] interface HTMLAppletElement : HTMLElement {
[Reflect] attribute DOMString align;
[Reflect] attribute DOMString alt;
@@ -29,9 +32,11 @@
[Reflect] attribute DOMString height;
[Reflect] attribute unsigned long hspace;
[Reflect] attribute DOMString name;
- [Reflect, URL] attribute DOMString _object; // "object" is a reserved word
+ [Reflect, URL] attribute DOMString _object; // the underscore is not part of the identifier
[Reflect] attribute unsigned long vspace;
[Reflect] attribute DOMString width;
+
+ // FIXME: These getters and setters are not in the spec.
[Custom, NotEnumerable] getter boolean (unsigned long index);
[Custom] setter boolean (unsigned long index, Node value);
[Custom, NotEnumerable] getter Node (DOMString name);
« no previous file with comments | « core/html/HTMLAnchorElement.idl ('k') | core/html/HTMLAreaElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698