| 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 [RaisesException] boolean scrollsWithRespectTo(Element element1, Element ele
ment2); | 197 [RaisesException] boolean scrollsWithRespectTo(Element element1, Element ele
ment2); |
| 198 | 198 |
| 199 DOMString scrollingStateTreeAsText(Document document); | 199 DOMString scrollingStateTreeAsText(Document document); |
| 200 [RaisesException] DOMString mainThreadScrollingReasons(Document document); | 200 [RaisesException] DOMString mainThreadScrollingReasons(Document document); |
| 201 [RaisesException] ClientRectList nonFastScrollableRects(Document document); | 201 [RaisesException] ClientRectList nonFastScrollableRects(Document document); |
| 202 | 202 |
| 203 void evictAllResources(); | 203 void evictAllResources(); |
| 204 | 204 |
| 205 unsigned long numberOfLiveNodes(); | 205 unsigned long numberOfLiveNodes(); |
| 206 unsigned long numberOfLiveDocuments(); | 206 unsigned long numberOfLiveDocuments(); |
| 207 DOMString dumpRefCountedInstanceCounts(); | |
| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 DOMString getProgrammaticScrollAnimationState(Node node); | 371 DOMString getProgrammaticScrollAnimationState(Node node); |
| 373 | 372 |
| 374 ClientRect visualRect(Node node); | 373 ClientRect visualRect(Node node); |
| 375 | 374 |
| 376 OriginTrialsTest originTrialsTest(); | 375 OriginTrialsTest originTrialsTest(); |
| 377 | 376 |
| 378 void crash(); | 377 void crash(); |
| 379 | 378 |
| 380 void setIsLowEndDevice(boolean isLowEndDevice); | 379 void setIsLowEndDevice(boolean isLowEndDevice); |
| 381 }; | 380 }; |
| OLD | NEW |