| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 [TypeChecking=Interface] DOMString scrollingStateTreeAsText(Document documen
t); | 182 [TypeChecking=Interface] DOMString scrollingStateTreeAsText(Document documen
t); |
| 183 [RaisesException, TypeChecking=Interface] DOMString mainThreadScrollingReaso
ns(Document document); | 183 [RaisesException, TypeChecking=Interface] DOMString mainThreadScrollingReaso
ns(Document document); |
| 184 [RaisesException, TypeChecking=Interface] ClientRectList nonFastScrollableRe
cts(Document document); | 184 [RaisesException, TypeChecking=Interface] ClientRectList nonFastScrollableRe
cts(Document document); |
| 185 | 185 |
| 186 [TypeChecking=Interface] void garbageCollectDocumentResources(Document docum
ent); | 186 [TypeChecking=Interface] void garbageCollectDocumentResources(Document docum
ent); |
| 187 void evictAllResources(); | 187 void evictAllResources(); |
| 188 | 188 |
| 189 unsigned long numberOfLiveNodes(); | 189 unsigned long numberOfLiveNodes(); |
| 190 unsigned long numberOfLiveDocuments(); | 190 unsigned long numberOfLiveDocuments(); |
| 191 unsigned long numberOfLiveAXObjects(); |
| 191 DOMString dumpRefCountedInstanceCounts(); | 192 DOMString dumpRefCountedInstanceCounts(); |
| 192 sequence<DOMString> consoleMessageArgumentCounts(Document document); | 193 sequence<DOMString> consoleMessageArgumentCounts(Document document); |
| 193 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigne
d long maxDeadBytes, unsigned long totalBytes); | 194 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigne
d long maxDeadBytes, unsigned long totalBytes); |
| 194 | 195 |
| 195 DOMString counterValue(Element element); | 196 DOMString counterValue(Element element); |
| 196 long pageNumber(Element element, optional float pageWidth, optional float pa
geHeight); | 197 long pageNumber(Element element, optional float pageWidth, optional float pa
geHeight); |
| 197 DOMString[] shortcutIconURLs(Document document); | 198 DOMString[] shortcutIconURLs(Document document); |
| 198 DOMString[] allIconURLs(Document document); | 199 DOMString[] allIconURLs(Document document); |
| 199 long numberOfPages(optional double pageWidthInPixels, optional double pageHe
ightInPixels); | 200 long numberOfPages(optional double pageWidthInPixels, optional double pageHe
ightInPixels); |
| 200 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu
mber); | 201 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu
mber); |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 | 314 |
| 314 boolean isUseCounted(Document document, long useCounterId); | 315 boolean isUseCounted(Document document, long useCounterId); |
| 315 | 316 |
| 316 iterable<long>; | 317 iterable<long>; |
| 317 | 318 |
| 318 [Unscopeable] readonly attribute DOMString unscopeableAttribute; | 319 [Unscopeable] readonly attribute DOMString unscopeableAttribute; |
| 319 [Unscopeable] DOMString unscopeableMethod(); | 320 [Unscopeable] DOMString unscopeableMethod(); |
| 320 | 321 |
| 321 ClientRectList focusRingRects(Element element); | 322 ClientRectList focusRingRects(Element element); |
| 322 }; | 323 }; |
| OLD | NEW |