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

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

Issue 17031006: Rename DOMWindow interface to Window (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 6 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/CompositionEvent.idl ('k') | Source/core/dom/EventTargetFactory.in » ('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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 optional unsigned long wha tToShow, 79 optional unsigned long wha tToShow,
80 optional NodeFilter filter , 80 optional NodeFilter filter ,
81 optional boolean expandEnt ityReferences); 81 optional boolean expandEnt ityReferences);
82 [RaisesException] TreeWalker createTreeWalker(Node root, 82 [RaisesException] TreeWalker createTreeWalker(Node root,
83 optional unsigned long whatToS how, 83 optional unsigned long whatToS how,
84 optional NodeFilter filter, 84 optional NodeFilter filter,
85 optional boolean expandEntityR eferences); 85 optional boolean expandEntityR eferences);
86 86
87 // DOM Level 2 Abstract Views (DocumentView interface) 87 // DOM Level 2 Abstract Views (DocumentView interface)
88 88
89 readonly attribute DOMWindow defaultView; 89 readonly attribute Window defaultView;
90 90
91 // DOM Level 2 Style (DocumentStyle interface) 91 // DOM Level 2 Style (DocumentStyle interface)
92 92
93 readonly attribute StyleSheetList styleSheets; 93 readonly attribute StyleSheetList styleSheets;
94 94
95 // DOM Level 2 Style (DocumentCSS interface) 95 // DOM Level 2 Style (DocumentCSS interface)
96 96
97 CSSStyleDeclaration getOverrideStyle([Default=Undefined] optional Element e lement, 97 CSSStyleDeclaration getOverrideStyle([Default=Undefined] optional Element e lement,
98 [Default=Undefined] opti onal DOMString pseudoElement); 98 [Default=Undefined] opti onal DOMString pseudoElement);
99 99
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchstart; 249 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchstart;
250 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchmove; 250 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchmove;
251 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchend; 251 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchend;
252 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchcancel ; 252 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchcancel ;
253 [NotEnumerable] attribute EventListener onwebkitfullscreenchange; 253 [NotEnumerable] attribute EventListener onwebkitfullscreenchange;
254 [NotEnumerable] attribute EventListener onwebkitfullscreenerror; 254 [NotEnumerable] attribute EventListener onwebkitfullscreenerror;
255 [NotEnumerable] attribute EventListener onwebkitpointerlockchange; 255 [NotEnumerable] attribute EventListener onwebkitpointerlockchange;
256 [NotEnumerable] attribute EventListener onwebkitpointerlockerror; 256 [NotEnumerable] attribute EventListener onwebkitpointerlockerror;
257 [NotEnumerable, EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute EventListener onsecuritypolicyviolation; 257 [NotEnumerable, EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute EventListener onsecuritypolicyviolation;
258 258
259 [EnabledAtRuntime=touch] Touch createTouch([Default=Undefined] optional DOMW indow window, 259 [EnabledAtRuntime=touch] Touch createTouch([Default=Undefined] optional Wind ow window,
260 [Default=Undefined] optional Even tTarget target, 260 [Default=Undefined] optional Even tTarget target,
261 [Default=Undefined] optional long identifier, 261 [Default=Undefined] optional long identifier,
262 [Default=Undefined] optional long pageX, 262 [Default=Undefined] optional long pageX,
263 [Default=Undefined] optional long pageY, 263 [Default=Undefined] optional long pageY,
264 [Default=Undefined] optional long screenX, 264 [Default=Undefined] optional long screenX,
265 [Default=Undefined] optional long screenY, 265 [Default=Undefined] optional long screenY,
266 [Default=Undefined] optional long webkitRadiusX, 266 [Default=Undefined] optional long webkitRadiusX,
267 [Default=Undefined] optional long webkitRadiusY, 267 [Default=Undefined] optional long webkitRadiusY,
268 [Default=Undefined] optional floa t webkitRotationAngle, 268 [Default=Undefined] optional floa t webkitRotationAngle,
269 [Default=Undefined] optional floa t webkitForce); 269 [Default=Undefined] optional floa t webkitForce);
(...skipping 14 matching lines...) Expand all
284 284
285 // ParentNode interface API 285 // ParentNode interface API
286 readonly attribute HTMLCollection children; 286 readonly attribute HTMLCollection children;
287 readonly attribute Element firstElementChild; 287 readonly attribute Element firstElementChild;
288 readonly attribute Element lastElementChild; 288 readonly attribute Element lastElementChild;
289 readonly attribute unsigned long childElementCount; 289 readonly attribute unsigned long childElementCount;
290 290
291 readonly attribute HTMLScriptElement currentScript; 291 readonly attribute HTMLScriptElement currentScript;
292 }; 292 };
293 293
OLDNEW
« no previous file with comments | « Source/core/dom/CompositionEvent.idl ('k') | Source/core/dom/EventTargetFactory.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698