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

Unified Diff: Source/core/html/HTMLFrameSetElement.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 | « Source/core/html/HTMLFrameElement.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFrameSetElement.idl
diff --git a/Source/core/html/HTMLFrameSetElement.idl b/Source/core/html/HTMLFrameSetElement.idl
index e7c6a243cf8f6d7475cc0470e8099e8562c519c1..e7d42b9c4ce740a15544f4226408731d9c17f16a 100644
--- a/Source/core/html/HTMLFrameSetElement.idl
+++ b/Source/core/html/HTMLFrameSetElement.idl
@@ -18,22 +18,28 @@
* Boston, MA 02110-1301, USA.
*/
+// https://html.spec.whatwg.org/#htmlframesetelement
+
+// FIXME: HTMLFrameSetElement should not have [OverrideBuiltins].
[
OverrideBuiltins,
] interface HTMLFrameSetElement : HTMLElement {
- [NotEnumerable] getter Window (DOMString name);
[Reflect] attribute DOMString cols;
[Reflect] attribute DOMString rows;
- [RuntimeEnabled=OrientationEvent] attribute EventHandler onorientationchange;
-
- // Overrides of GlobalEventHandler attributes
+ // FIXME: The spec requires special behavior for these event
+ // handler attributes but does not include them in the IDL:
+ // https://www.w3.org/Bugs/Public/show_bug.cgi?id=28166
attribute EventHandler onblur;
attribute EventHandler onerror;
attribute EventHandler onfocus;
attribute EventHandler onload;
attribute EventHandler onresize;
attribute EventHandler onscroll;
+
+ // Non-standard APIs
+ [NotEnumerable] getter Window (DOMString name);
+ [RuntimeEnabled=OrientationEvent] attribute EventHandler onorientationchange;
};
HTMLFrameSetElement implements WindowEventHandlers;
« no previous file with comments | « Source/core/html/HTMLFrameElement.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698