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

Side by Side Diff: Source/core/dom/Element.idl

Issue 17379016: Introduce ChildNode IDL interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix typo Created 7 years, 6 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 | « Source/core/dom/DocumentType.idl ('k') | no next file » | 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, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 [RaisesException] NodeList querySelectorAll(DOMString selectors); 98 [RaisesException] NodeList querySelectorAll(DOMString selectors);
99 99
100 // WebKit extension, pending specification. 100 // WebKit extension, pending specification.
101 [RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional DOMString selectors); 101 [RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional DOMString selectors);
102 102
103 // ShadowAware API 103 // ShadowAware API
104 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString webkitPseudo; 104 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString webkitPseudo;
105 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha dowRoot(); 105 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha dowRoot();
106 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w ebkitShadowRoot; 106 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w ebkitShadowRoot;
107 107
108 // ChildNode interface API
109 [PerWorldBindings] readonly attribute Element previousElementSibling;
110 [PerWorldBindings] readonly attribute Element nextElementSibling;
111 [RaisesException] void remove();
112
113 // CSSOM View Module API 108 // CSSOM View Module API
114 ClientRectList getClientRects(); 109 ClientRectList getClientRects();
115 ClientRect getBoundingClientRect(); 110 ClientRect getBoundingClientRect();
116 111
117 // Mozilla version 112 // Mozilla version
118 const unsigned short ALLOW_KEYBOARD_INPUT = 1; 113 const unsigned short ALLOW_KEYBOARD_INPUT = 1;
119 [EnabledAtRuntime=fullscreen] void webkitRequestFullScreen([Default=Undefine d] optional unsigned short flags); 114 [EnabledAtRuntime=fullscreen] void webkitRequestFullScreen([Default=Undefine d] optional unsigned short flags);
120 115
121 // W3C version 116 // W3C version
122 [EnabledAtRuntime=fullscreen] void webkitRequestFullscreen(); 117 [EnabledAtRuntime=fullscreen] void webkitRequestFullscreen();
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 [NotEnumerable, PerWorldBindings] attribute EventListener onreset; 187 [NotEnumerable, PerWorldBindings] attribute EventListener onreset;
193 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch; 188 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch;
194 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart; 189 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart;
195 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchstart; 190 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchstart;
196 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchmove; 191 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchmove;
197 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchend; 192 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchend;
198 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchcancel; 193 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchcancel;
199 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change; 194 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change;
200 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error; 195 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error;
201 }; 196 };
OLDNEW
« no previous file with comments | « Source/core/dom/DocumentType.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698