| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 [RaisesException] void setNeedsCompositedScrolling(Element element, unsigned
short value); | 187 [RaisesException] void setNeedsCompositedScrolling(Element element, unsigned
short value); |
| 188 | 188 |
| 189 [RaisesException] DOMString scrollingStateTreeAsText(Document document); | 189 [RaisesException] DOMString scrollingStateTreeAsText(Document document); |
| 190 [RaisesException] DOMString mainThreadScrollingReasons(Document document); | 190 [RaisesException] DOMString mainThreadScrollingReasons(Document document); |
| 191 [RaisesException] ClientRectList nonFastScrollableRects(Document document); | 191 [RaisesException] ClientRectList nonFastScrollableRects(Document document); |
| 192 | 192 |
| 193 [RaisesException] DOMString repaintRectsAsText(Document document); | 193 [RaisesException] DOMString repaintRectsAsText(Document document); |
| 194 | 194 |
| 195 [RaisesException] void garbageCollectDocumentResources(Document document); | 195 [RaisesException] void garbageCollectDocumentResources(Document document); |
| 196 void evictAllResources(); | 196 void evictAllResources(); |
| 197 void garbageCollectV8WithoutContext(); |
| 197 | 198 |
| 198 void allowRoundingHacks(); | 199 void allowRoundingHacks(); |
| 199 | 200 |
| 200 void insertAuthorCSS(Document document, DOMString css); | 201 void insertAuthorCSS(Document document, DOMString css); |
| 201 void insertUserCSS(Document document, DOMString css); | 202 void insertUserCSS(Document document, DOMString css); |
| 202 | 203 |
| 203 unsigned long numberOfLiveNodes(); | 204 unsigned long numberOfLiveNodes(); |
| 204 unsigned long numberOfLiveDocuments(); | 205 unsigned long numberOfLiveDocuments(); |
| 205 sequence<DOMString> consoleMessageArgumentCounts(Document document); | 206 sequence<DOMString> consoleMessageArgumentCounts(Document document); |
| 206 Window openDummyInspectorFrontend(DOMString url); | 207 Window openDummyInspectorFrontend(DOMString url); |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 void forceReload(boolean endToEnd); | 256 void forceReload(boolean endToEnd); |
| 256 | 257 |
| 257 [RaisesException] DOMString getImageSourceURL(Element element); | 258 [RaisesException] DOMString getImageSourceURL(Element element); |
| 258 | 259 |
| 259 boolean isSelectPopupVisible(Node node); | 260 boolean isSelectPopupVisible(Node node); |
| 260 | 261 |
| 261 [RaisesException] ClientRect selectionBounds(); | 262 [RaisesException] ClientRect selectionBounds(); |
| 262 | 263 |
| 263 boolean loseSharedGraphicsContext3D(); | 264 boolean loseSharedGraphicsContext3D(); |
| 264 }; | 265 }; |
| OLD | NEW |