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

Side by Side Diff: core/testing/Internals.idl

Issue 23014006: Roll IDL to multivm@1350 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
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 | « core/testing/GCObservation.idl ('k') | core/testing/LayerRectList.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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 11 matching lines...) Expand all
22 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 [ 27 [
28 DoNotCheckConstants 28 DoNotCheckConstants
29 ] interface Internals { 29 ] interface Internals {
30 DOMString address(Node node); 30 DOMString address(Node node);
31 31
32 GCObservation observeGC(any observed);
33
32 [RaisesException] DOMString elementRenderTreeAsText(Element element); 34 [RaisesException] DOMString elementRenderTreeAsText(Element element);
33 boolean isPreloaded(DOMString url); 35 boolean isPreloaded(DOMString url);
34 boolean isLoadingFromMemoryCache(DOMString url); 36 boolean isLoadingFromMemoryCache(DOMString url);
35 37
36 void crash(); 38 void crash();
37 39
38 [RaisesException] unsigned long numberOfScopedHTMLStyleChildren(Node scope); 40 [RaisesException] unsigned long numberOfScopedHTMLStyleChildren(Node scope);
39 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node); 41 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node);
40 42
41 [RaisesException] ShadowRoot ensureShadowRoot(Element host); 43 [RaisesException] ShadowRoot ensureShadowRoot(Element host);
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 208
207 DOMString counterValue(Element element); 209 DOMString counterValue(Element element);
208 long pageNumber(Element element, optional float pageWidth, optional float pa geHeight); 210 long pageNumber(Element element, optional float pageWidth, optional float pa geHeight);
209 DOMString[] shortcutIconURLs(Document document); 211 DOMString[] shortcutIconURLs(Document document);
210 DOMString[] allIconURLs(Document document); 212 DOMString[] allIconURLs(Document document);
211 long numberOfPages(optional double pageWidthInPixels, optional double pageHe ightInPixels); 213 long numberOfPages(optional double pageWidthInPixels, optional double pageHe ightInPixels);
212 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu mber); 214 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu mber);
213 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long width, long height, long marginTop, long marginRight, long marginBottom, long ma rginLeft); 215 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long width, long height, long marginTop, long marginRight, long marginBottom, long ma rginLeft);
214 216
215 [RaisesException] void setDeviceScaleFactor(float scaleFactor); 217 [RaisesException] void setDeviceScaleFactor(float scaleFactor);
216 [RaisesException] void setPageScaleFactor(float scaleFactor, long x, long y) ;
217 218
218 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib le); 219 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib le);
219 220
220 void webkitWillEnterFullScreenForElement(Document document, Element element) ; 221 void webkitWillEnterFullScreenForElement(Document document, Element element) ;
221 void webkitDidEnterFullScreenForElement(Document document, Element element); 222 void webkitDidEnterFullScreenForElement(Document document, Element element);
222 void webkitWillExitFullScreenForElement(Document document, Element element); 223 void webkitWillExitFullScreenForElement(Document document, Element element);
223 void webkitDidExitFullScreenForElement(Document document, Element element); 224 void webkitDidExitFullScreenForElement(Document document, Element element);
224 225
225 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); 226 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme);
226 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch eme); 227 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch eme);
(...skipping 25 matching lines...) Expand all
252 void enableMockSpeechSynthesizer(); 253 void enableMockSpeechSynthesizer();
253 254
254 [RaisesException] DOMString getImageSourceURL(Element element); 255 [RaisesException] DOMString getImageSourceURL(Element element);
255 256
256 boolean isSelectPopupVisible(Node node); 257 boolean isSelectPopupVisible(Node node);
257 258
258 [RaisesException] ClientRect selectionBounds(); 259 [RaisesException] ClientRect selectionBounds();
259 260
260 boolean loseSharedGraphicsContext3D(); 261 boolean loseSharedGraphicsContext3D();
261 }; 262 };
OLDNEW
« no previous file with comments | « core/testing/GCObservation.idl ('k') | core/testing/LayerRectList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698