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

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

Issue 14882009: Remove DOM prefix from several IDL interfaces (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 7 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/DOMWindowCSS.idl ('k') | Source/core/dom/shadow/ShadowRoot.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, 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 [TreatReturnedNullStringAs=Undefined, TreatNullAs=NullString] attri bute DOMString charset; 143 [TreatReturnedNullStringAs=Undefined, TreatNullAs=NullString] attri bute DOMString charset;
144 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString defaultCh arset; 144 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString defaultCh arset;
145 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat e; 145 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat e;
146 146
147 Element elementFromPoint([Default=Undefined] optional long x, 147 Element elementFromPoint([Default=Undefined] optional long x,
148 [Default=Undefined] optional long y); 148 [Default=Undefined] optional long y);
149 Range caretRangeFromPoint([Default=Undefined] optional long x, 149 Range caretRangeFromPoint([Default=Undefined] optional long x,
150 [Default=Undefined] optional long y); 150 [Default=Undefined] optional long y);
151 151
152 // Mozilla extensions 152 // Mozilla extensions
153 DOMSelection getSelection(); 153 Selection getSelection();
154 [TreatReturnedNullStringAs=Null] readonly attribute DOMString characterSet; 154 [TreatReturnedNullStringAs=Null] readonly attribute DOMString characterSet;
155 155
156 // WebKit extensions 156 // WebKit extensions
157 157
158 [TreatReturnedNullStringAs=Null] readonly attribute DOMString preferredStyle sheetSet; 158 [TreatReturnedNullStringAs=Null] readonly attribute DOMString preferredStyle sheetSet;
159 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute DOMString selectedStylesheetSet; 159 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute DOMString selectedStylesheetSet;
160 160
161 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString na me, long width, long height); 161 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString na me, long width, long height);
162 162
163 // HTML 5 163 // HTML 5
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 [EnabledAtRuntime=customDOMElements, ImplementedAs=registerElement, CallWith =ScriptState, DeliverCustomElementCallbacks, RaisesException] CustomElementConst ructor webkitRegister(DOMString name, optional Dictionary options); 279 [EnabledAtRuntime=customDOMElements, ImplementedAs=registerElement, CallWith =ScriptState, DeliverCustomElementCallbacks, RaisesException] CustomElementConst ructor webkitRegister(DOMString name, optional Dictionary options);
280 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElement(DOMString localName, [TreatNul lAs=NullString] DOMString typeExtension); 280 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElement(DOMString localName, [TreatNul lAs=NullString] DOMString typeExtension);
281 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOM String namespaceURI, DOMString qualifiedName, 281 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOM String namespaceURI, DOMString qualifiedName,
282 [TreatNullAs=NullString] DOMString typeExtension); 282 [TreatNullAs=NullString] DOMString typeExtension);
283 283
284 // Page visibility API. 284 // Page visibility API.
285 readonly attribute DOMString webkitVisibilityState; 285 readonly attribute DOMString webkitVisibilityState;
286 readonly attribute boolean webkitHidden; 286 readonly attribute boolean webkitHidden;
287 287
288 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces 288 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces
289 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute DOMSecurityPolicy securityPolicy; 289 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute SecurityPolicy securityPolicy;
290 290
291 // ParentNode interface API 291 // ParentNode interface API
292 readonly attribute HTMLCollection children; 292 readonly attribute HTMLCollection children;
293 readonly attribute Element firstElementChild; 293 readonly attribute Element firstElementChild;
294 readonly attribute Element lastElementChild; 294 readonly attribute Element lastElementChild;
295 readonly attribute unsigned long childElementCount; 295 readonly attribute unsigned long childElementCount;
296 }; 296 };
297 297
OLDNEW
« no previous file with comments | « Source/core/css/DOMWindowCSS.idl ('k') | Source/core/dom/shadow/ShadowRoot.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698