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

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

Issue 17376006: Implement WebIDL implements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add back [PerWorldBindings] 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/DocumentFragment.idl ('k') | Source/core/dom/ParentNode.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, 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 [PerWorldBindings] readonly attribute DOMStringMap dataset; 94 [PerWorldBindings] readonly attribute DOMStringMap dataset;
95 95
96 // NodeSelector - Selector API 96 // NodeSelector - Selector API
97 [RaisesException] Element querySelector(DOMString selectors); 97 [RaisesException] Element querySelector(DOMString selectors);
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 // ParentNode interface API
104 [PerWorldBindings] readonly attribute HTMLCollection children;
105 [PerWorldBindings] readonly attribute Element firstElementChild;
106 [PerWorldBindings] readonly attribute Element lastElementChild;
107 [PerWorldBindings] readonly attribute unsigned long childElementCount;
108
109 // ShadowAware API 103 // ShadowAware API
110 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString webkitPseudo; 104 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString webkitPseudo;
111 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha dowRoot(); 105 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha dowRoot();
112 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w ebkitShadowRoot; 106 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w ebkitShadowRoot;
113 107
114 // ChildNode interface API 108 // ChildNode interface API
115 [PerWorldBindings] readonly attribute Element previousElementSibling; 109 [PerWorldBindings] readonly attribute Element previousElementSibling;
116 [PerWorldBindings] readonly attribute Element nextElementSibling; 110 [PerWorldBindings] readonly attribute Element nextElementSibling;
117 [RaisesException] void remove(); 111 [RaisesException] void remove();
118 112
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 [NotEnumerable, PerWorldBindings] attribute EventListener onreset; 192 [NotEnumerable, PerWorldBindings] attribute EventListener onreset;
199 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch; 193 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch;
200 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart; 194 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart;
201 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchstart; 195 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchstart;
202 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchmove; 196 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchmove;
203 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchend; 197 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchend;
204 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchcancel; 198 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchcancel;
205 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change; 199 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change;
206 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error; 200 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error;
207 }; 201 };
OLDNEW
« no previous file with comments | « Source/core/dom/DocumentFragment.idl ('k') | Source/core/dom/ParentNode.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698