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

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

Issue 23189010: Rename the Custom Elements runtime feature to "CustomElements". (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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/css/CSSSelector.cpp ('k') | Source/core/dom/DocumentInit.cpp » ('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, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org>
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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 [Default=Undefined] optional long pageX, 254 [Default=Undefined] optional long pageX,
255 [Default=Undefined] optional long pageY, 255 [Default=Undefined] optional long pageY,
256 [Default=Undefined] optional long screenX, 256 [Default=Undefined] optional long screenX,
257 [Default=Undefined] optional long screenY, 257 [Default=Undefined] optional long screenY,
258 [Default=Undefined] optional long webkitRadiusX, 258 [Default=Undefined] optional long webkitRadiusX,
259 [Default=Undefined] optional long webkitRadiusY, 259 [Default=Undefined] optional long webkitRadiusY,
260 [Default=Undefined] optional floa t webkitRotationAngle, 260 [Default=Undefined] optional floa t webkitRotationAngle,
261 [Default=Undefined] optional floa t webkitForce); 261 [Default=Undefined] optional floa t webkitForce);
262 [EnabledAtRuntime=touch, Custom, RaisesException] TouchList createTouchList( ); 262 [EnabledAtRuntime=touch, Custom, RaisesException] TouchList createTouchList( );
263 263
264 [DeprecateAs=PrefixedDocumentRegister, EnabledAtRuntime=customDOMElements, I mplementedAs=registerElement, CallWith=ScriptState, CustomElementCallbacks=Enabl e, RaisesException] CustomElementConstructor webkitRegister(DOMString name, opti onal Dictionary options); 264 [DeprecateAs=PrefixedDocumentRegister, EnabledAtRuntime=customElements, Impl ementedAs=registerElement, CallWith=ScriptState, CustomElementCallbacks=Enable, RaisesException] CustomElementConstructor webkitRegister(DOMString name, optiona l Dictionary options);
265 [EnabledAtRuntime=customDOMElements, ImplementedAs=registerElement, CallWith =ScriptState, CustomElementCallbacks=Enable, RaisesException] CustomElementConst ructor register(DOMString name, optional Dictionary options); 265 [EnabledAtRuntime=customElements, ImplementedAs=registerElement, CallWith=Sc riptState, CustomElementCallbacks=Enable, RaisesException] CustomElementConstruc tor register(DOMString name, optional Dictionary options);
266 [CustomElementCallbacks=Enable, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElement(DOMString localName, [TreatNul lAs=NullString] DOMString typeExtension); 266 [CustomElementCallbacks=Enable, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElement(DOMString localName, [TreatNul lAs=NullString] DOMString typeExtension);
267 [CustomElementCallbacks=Enable, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOM String namespaceURI, DOMString qualifiedName, 267 [CustomElementCallbacks=Enable, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOM String namespaceURI, DOMString qualifiedName,
268 [TreatNullAs=NullString] DOMString typeExtension); 268 [TreatNullAs=NullString] DOMString typeExtension);
269 269
270 // Page visibility API. 270 // Page visibility API.
271 readonly attribute DOMString webkitVisibilityState; 271 readonly attribute DOMString webkitVisibilityState;
272 readonly attribute boolean webkitHidden; 272 readonly attribute boolean webkitHidden;
273 273
274 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces 274 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces
275 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute SecurityPolicy securityPolicy; 275 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute SecurityPolicy securityPolicy;
276 276
277 readonly attribute HTMLScriptElement currentScript; 277 readonly attribute HTMLScriptElement currentScript;
278 }; 278 };
279 279
280 Document implements ParentNode; 280 Document implements ParentNode;
281 281
OLDNEW
« no previous file with comments | « Source/core/css/CSSSelector.cpp ('k') | Source/core/dom/DocumentInit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698