OLD | NEW |
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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 | 197 |
198 DOMString scrollingStateTreeAsText(Document document); | 198 DOMString scrollingStateTreeAsText(Document document); |
199 [RaisesException] DOMString mainThreadScrollingReasons(Document document); | 199 [RaisesException] DOMString mainThreadScrollingReasons(Document document); |
200 [RaisesException] ClientRectList nonFastScrollableRects(Document document); | 200 [RaisesException] ClientRectList nonFastScrollableRects(Document document); |
201 | 201 |
202 void evictAllResources(); | 202 void evictAllResources(); |
203 | 203 |
204 unsigned long numberOfLiveNodes(); | 204 unsigned long numberOfLiveNodes(); |
205 unsigned long numberOfLiveDocuments(); | 205 unsigned long numberOfLiveDocuments(); |
206 DOMString dumpRefCountedInstanceCounts(); | 206 DOMString dumpRefCountedInstanceCounts(); |
207 sequence<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes,
unsigned long maxDeadBytes, unsigned long totalBytes); | |
208 | 207 |
209 DOMString counterValue(Element element); | 208 DOMString counterValue(Element element); |
210 [RaisesException] long pageNumber(Element element, optional float pageWidth
= 800, optional float pageHeight = 600); | 209 [RaisesException] long pageNumber(Element element, optional float pageWidth
= 800, optional float pageHeight = 600); |
211 sequence<DOMString> shortcutIconURLs(Document document); | 210 sequence<DOMString> shortcutIconURLs(Document document); |
212 sequence<DOMString> allIconURLs(Document document); | 211 sequence<DOMString> allIconURLs(Document document); |
213 [RaisesException] long numberOfPages(optional double pageWidthInPixels = 800
, optional double pageHeightInPixels = 600); | 212 [RaisesException] long numberOfPages(optional double pageWidthInPixels = 800
, optional double pageHeightInPixels = 600); |
214 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu
mber); | 213 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu
mber); |
215 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long
width, long height, long marginTop, long marginRight, long marginBottom, long ma
rginLeft); | 214 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long
width, long height, long marginTop, long marginRight, long marginBottom, long ma
rginLeft); |
216 | 215 |
217 [RaisesException] float pageScaleFactor(); | 216 [RaisesException] float pageScaleFactor(); |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 DOMString getScrollAnimationState(Node node); | 356 DOMString getScrollAnimationState(Node node); |
358 | 357 |
359 DOMString getProgrammaticScrollAnimationState(Node node); | 358 DOMString getProgrammaticScrollAnimationState(Node node); |
360 | 359 |
361 ClientRect visualRect(Node node); | 360 ClientRect visualRect(Node node); |
362 | 361 |
363 OriginTrialsTest originTrialsTest(); | 362 OriginTrialsTest originTrialsTest(); |
364 | 363 |
365 void crash(); | 364 void crash(); |
366 }; | 365 }; |
OLD | NEW |