Index: core/html/HTMLFrameSetElement.idl |
diff --git a/core/html/HTMLFrameSetElement.idl b/core/html/HTMLFrameSetElement.idl |
index e7c6a243cf8f6d7475cc0470e8099e8562c519c1..21caf79c3c14206c5336e1b17a69d8588a3439a8 100644 |
--- a/core/html/HTMLFrameSetElement.idl |
+++ b/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 |
+ // TODO(philipj): These event handler attributes should be inherited from |
+ // HTMLElement (which implements GlobalEventHandlers), but have different |
+ // behavior. See 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; |