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

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

Issue 187573002: Revert "Reverting custom pseudo element". (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/Element.cpp ('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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 [PerWorldBindings] readonly attribute DOMStringMap dataset; 104 [PerWorldBindings] readonly attribute DOMStringMap dataset;
105 105
106 // NodeSelector - Selector API 106 // NodeSelector - Selector API
107 [RaisesException] Element querySelector(DOMString selectors); 107 [RaisesException] Element querySelector(DOMString selectors);
108 [RaisesException] NodeList querySelectorAll(DOMString selectors); 108 [RaisesException] NodeList querySelectorAll(DOMString selectors);
109 109
110 // WebKit extension 110 // WebKit extension
111 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel ector] boolean webkitMatchesSelector(DOMString selectors); 111 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel ector] boolean webkitMatchesSelector(DOMString selectors);
112 112
113 // Shadow DOM API 113 // Shadow DOM API
114 [RuntimeEnabled=ShadowDOM, Reflect, TreatNullAs=NullString, PerWorldBindings ] attribute DOMString pseudo;
114 [RuntimeEnabled=ShadowDOM, RaisesException] ShadowRoot createShadowRoot(); 115 [RuntimeEnabled=ShadowDOM, RaisesException] ShadowRoot createShadowRoot();
115 [RuntimeEnabled=ShadowDOM, PerWorldBindings] readonly attribute ShadowRoot s hadowRoot; 116 [RuntimeEnabled=ShadowDOM, PerWorldBindings] readonly attribute ShadowRoot s hadowRoot;
116 [RuntimeEnabled=ShadowDOM, PerWorldBindings] NodeList getDestinationInsertio nPoints(); 117 [RuntimeEnabled=ShadowDOM, PerWorldBindings] NodeList getDestinationInsertio nPoints();
117 118
118 // To-be-deprecated prefixed Shadow DOM API 119 // To-be-deprecated prefixed Shadow DOM API
119 [ImplementedAs=createShadowRoot, RaisesException, MeasureAs=ShadowDOMPrefixe dCreateShadowRoot] ShadowRoot webkitCreateShadowRoot(); 120 [ImplementedAs=createShadowRoot, RaisesException, MeasureAs=ShadowDOMPrefixe dCreateShadowRoot] ShadowRoot webkitCreateShadowRoot();
120 [ImplementedAs=shadowRoot, PerWorldBindings, MeasureAs=ShadowDOMPrefixedShad owRoot] readonly attribute ShadowRoot webkitShadowRoot; 121 [ImplementedAs=shadowRoot, PerWorldBindings, MeasureAs=ShadowDOMPrefixedShad owRoot] readonly attribute ShadowRoot webkitShadowRoot;
121 122
122 // CSSOM View Module API 123 // CSSOM View Module API
123 ClientRectList getClientRects(); 124 ClientRectList getClientRects();
(...skipping 21 matching lines...) Expand all
145 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 146 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
146 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 147 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
147 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 148 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
148 attribute EventHandler onwebkitfullscreenchange; 149 attribute EventHandler onwebkitfullscreenchange;
149 attribute EventHandler onwebkitfullscreenerror; 150 attribute EventHandler onwebkitfullscreenerror;
150 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH andler onwheel; 151 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH andler onwheel;
151 }; 152 };
152 153
153 Element implements ParentNode; 154 Element implements ParentNode;
154 Element implements ChildNode; 155 Element implements ChildNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698