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

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

Issue 14083009: Remove ENABLE_CUSTOM_ELEMENTS compile time flag (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebasing. Created 7 years, 8 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 | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Element.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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 [Default=Undefined] optiona l long pageX, 270 [Default=Undefined] optiona l long pageX,
271 [Default=Undefined] optiona l long pageY, 271 [Default=Undefined] optiona l long pageY,
272 [Default=Undefined] optiona l long screenX, 272 [Default=Undefined] optiona l long screenX,
273 [Default=Undefined] optiona l long screenY, 273 [Default=Undefined] optiona l long screenY,
274 [Default=Undefined] optiona l long webkitRadiusX, 274 [Default=Undefined] optiona l long webkitRadiusX,
275 [Default=Undefined] optiona l long webkitRadiusY, 275 [Default=Undefined] optiona l long webkitRadiusY,
276 [Default=Undefined] optiona l float webkitRotationAngle, 276 [Default=Undefined] optiona l float webkitRotationAngle,
277 [Default=Undefined] optiona l float webkitForce); 277 [Default=Undefined] optiona l float webkitForce);
278 [ReturnNewObject, EnabledAtRuntime=touch, Custom, RaisesException] TouchList createTouchList(); 278 [ReturnNewObject, EnabledAtRuntime=touch, Custom, RaisesException] TouchList createTouchList();
279 279
280 #if defined(ENABLE_CUSTOM_ELEMENTS) && ENABLE_CUSTOM_ELEMENTS 280 [EnabledAtRuntime=customDOMElements, ImplementedAs=registerElement, CallWith =ScriptState, DeliverCustomElementCallbacks, RaisesException] CustomElementConst ructor webkitRegister(DOMString name, optional Dictionary options);
281 [EnabledAtRuntime=customDOMElements, Conditional=CUSTOM_ELEMENTS, Implemente dAs=registerElement, CallWith=ScriptState, DeliverCustomElementCallbacks, Raises Exception] CustomElementConstructor webkitRegister(DOMString name, optional Dict ionary options);
282 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, ActivityL og=AccessForIsolatedWorlds, RaisesException] Element createElement(DOMString loc alName, [TreatNullAs=NullString] DOMString typeExtension); 281 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, ActivityL og=AccessForIsolatedWorlds, RaisesException] Element createElement(DOMString loc alName, [TreatNullAs=NullString] DOMString typeExtension);
283 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, ActivityL og=AccessForIsolatedWorlds, RaisesException] Element createElementNS([TreatNullA s=NullString] DOMString namespaceURI, DOMString qualifiedName, 282 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, ActivityL og=AccessForIsolatedWorlds, RaisesException] Element createElementNS([TreatNullA s=NullString] DOMString namespaceURI, DOMString qualifiedName,
284 [TreatNullAs=NullString] DOMString typeExtension); 283 [TreatNullAs=NullString] DOMString typeExtension);
285 #endif
286 284
287 // Page visibility API. 285 // Page visibility API.
288 readonly attribute DOMString webkitVisibilityState; 286 readonly attribute DOMString webkitVisibilityState;
289 readonly attribute boolean webkitHidden; 287 readonly attribute boolean webkitHidden;
290 288
291 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces 289 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces
292 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute DOMSecurityPolicy securityPolicy; 290 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute DOMSecurityPolicy securityPolicy;
293 291
294 }; 292 };
295 293
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698