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

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

Issue 37283002: Drop NotEnumerable for the on* event handler IDL attributes (again) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rm redundant test Created 7 years, 2 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 | « LayoutTests/fast/forms/form-request-autocomplete-expected.txt ('k') | Source/core/html/HTMLFormElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLBodyElement.idl
diff --git a/Source/core/html/HTMLBodyElement.idl b/Source/core/html/HTMLBodyElement.idl
index 6ecf3d758c4df6d3cc6edca0979cb2b1aa79cce3..374f671e49e8a5a2e9375142dff62292e243a7bc 100644
--- a/Source/core/html/HTMLBodyElement.idl
+++ b/Source/core/html/HTMLBodyElement.idl
@@ -27,28 +27,28 @@ interface HTMLBodyElement : HTMLElement {
[Reflect, TreatNullAs=NullString] attribute DOMString vLink;
// Event handler attributes
- [NotEnumerable] attribute EventHandler onbeforeunload;
- [NotEnumerable] attribute EventHandler onhashchange;
- [NotEnumerable] attribute EventHandler onmessage;
- [NotEnumerable] attribute EventHandler onoffline;
- [NotEnumerable] attribute EventHandler ononline;
- [NotEnumerable] attribute EventHandler onpopstate;
- [NotEnumerable] attribute EventHandler onresize;
- [NotEnumerable] attribute EventHandler onstorage;
- [NotEnumerable] attribute EventHandler onunload;
+ attribute EventHandler onbeforeunload;
+ attribute EventHandler onhashchange;
+ attribute EventHandler onmessage;
+ attribute EventHandler onoffline;
+ attribute EventHandler ononline;
+ attribute EventHandler onpopstate;
+ attribute EventHandler onresize;
+ attribute EventHandler onstorage;
+ attribute EventHandler onunload;
- [Conditional=ORIENTATION_EVENTS, NotEnumerable] attribute EventHandler onorientationchange;
+ [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange;
// Overrides of Element attributes (with different implementation in bindings).
- [NotEnumerable] attribute EventHandler onblur;
- [NotEnumerable] attribute EventHandler onerror;
- [NotEnumerable] attribute EventHandler onfocus;
- [NotEnumerable] attribute EventHandler onload;
+ attribute EventHandler onblur;
+ attribute EventHandler onerror;
+ attribute EventHandler onfocus;
+ attribute EventHandler onload;
// Not implemented yet.
- // attribute [NotEnumerable] EventHandler onafterprint;
- // attribute [NotEnumerable] EventHandler onbeforeprint;
- // attribute [NotEnumerable] EventHandler onredo;
- // attribute [NotEnumerable] EventHandler onundo;
+ // attribute EventHandler onafterprint;
+ // attribute EventHandler onbeforeprint;
+ // attribute EventHandler onredo;
+ // attribute EventHandler onundo;
};
« no previous file with comments | « LayoutTests/fast/forms/form-request-autocomplete-expected.txt ('k') | Source/core/html/HTMLFormElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698