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

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

Issue 20246002: Rename ExperimentalShadowDOM runtime feature to ShadowDOM. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 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
« no previous file with comments | « no previous file | Source/core/dom/Event.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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 // Shadow DOM API 103 // Shadow DOM API
104 [EnabledAtRuntime=experimentalShadowDOM, Reflect, PerWorldBindings] attribut e DOMString pseudo; 104 [EnabledAtRuntime=ShadowDOM, Reflect, PerWorldBindings] attribute DOMString pseudo;
105 [EnabledAtRuntime=experimentalShadowDOM, RaisesException] ShadowRoot createS hadowRoot(); 105 [EnabledAtRuntime=ShadowDOM, RaisesException] ShadowRoot createShadowRoot();
106 [EnabledAtRuntime=experimentalShadowDOM, PerWorldBindings] readonly attribut e ShadowRoot shadowRoot; 106 [EnabledAtRuntime=ShadowDOM, PerWorldBindings] readonly attribute ShadowRoot shadowRoot;
107 107
108 // To-be-deprecated prefixed Shadow DOM API 108 // To-be-deprecated prefixed Shadow DOM API
109 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString webkitPseudo; 109 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString webkitPseudo;
110 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha dowRoot(); 110 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha dowRoot();
111 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w ebkitShadowRoot; 111 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w ebkitShadowRoot;
112 112
113 // CSSOM View Module API 113 // CSSOM View Module API
114 ClientRectList getClientRects(); 114 ClientRectList getClientRects();
115 ClientRect getBoundingClientRect(); 115 ClientRect getBoundingClientRect();
116 116
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchmove; 198 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchmove;
199 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchend; 199 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchend;
200 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchcancel; 200 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchcancel;
201 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change; 201 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change;
202 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error; 202 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error;
203 }; 203 };
204 204
205 Element implements ParentNode; 205 Element implements ParentNode;
206 Element implements ChildNode; 206 Element implements ChildNode;
207 207
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Event.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698