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

Side by Side Diff: Source/core/html/HTMLBodyElement.idl

Issue 1067303004: Update the FIXME around event handler attributes on body/frameset (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/html/HTMLFrameSetElement.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 12 matching lines...) Expand all
23 interface HTMLBodyElement : HTMLElement { 23 interface HTMLBodyElement : HTMLElement {
24 // obsolete members 24 // obsolete members
25 // https://html.spec.whatwg.org/#HTMLBodyElement-partial 25 // https://html.spec.whatwg.org/#HTMLBodyElement-partial
26 [Reflect, TreatNullAs=EmptyString] attribute DOMString text; 26 [Reflect, TreatNullAs=EmptyString] attribute DOMString text;
27 [Reflect, TreatNullAs=EmptyString] attribute DOMString link; 27 [Reflect, TreatNullAs=EmptyString] attribute DOMString link;
28 [Reflect, TreatNullAs=EmptyString] attribute DOMString vLink; 28 [Reflect, TreatNullAs=EmptyString] attribute DOMString vLink;
29 [Reflect, TreatNullAs=EmptyString] attribute DOMString aLink; 29 [Reflect, TreatNullAs=EmptyString] attribute DOMString aLink;
30 [Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor; 30 [Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
31 [Reflect] attribute DOMString background; 31 [Reflect] attribute DOMString background;
32 32
33 // FIXME: The spec requires special behavior for these event 33 // TODO(philipj): These event handler attributes should be inherited from
34 // handler attributes but does not include them in the IDL: 34 // HTMLElement (which implements GlobalEventHandlers), but have different
35 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=28166 35 // behavior. See https://www.w3.org/Bugs/Public/show_bug.cgi?id=28166
36 attribute EventHandler onblur; 36 attribute EventHandler onblur;
37 attribute EventHandler onerror; 37 attribute EventHandler onerror;
38 attribute EventHandler onfocus; 38 attribute EventHandler onfocus;
39 attribute EventHandler onload; 39 attribute EventHandler onload;
40 attribute EventHandler onresize; 40 attribute EventHandler onresize;
41 attribute EventHandler onscroll; 41 attribute EventHandler onscroll;
42 42
43 // Non-standard APIs 43 // Non-standard APIs
44 [RuntimeEnabled=OrientationEvent] attribute EventHandler onorientationchange ; 44 [RuntimeEnabled=OrientationEvent] attribute EventHandler onorientationchange ;
45 }; 45 };
46 46
47 HTMLBodyElement implements WindowEventHandlers; 47 HTMLBodyElement implements WindowEventHandlers;
OLDNEW
« no previous file with comments | « no previous file | Source/core/html/HTMLFrameSetElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698