| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 [RaisesException] ClientRectList nonFastScrollableRects(Document document); | 189 [RaisesException] ClientRectList nonFastScrollableRects(Document document); |
| 190 | 190 |
| 191 [RaisesException] DOMString repaintRectsAsText(Document document); | 191 [RaisesException] DOMString repaintRectsAsText(Document document); |
| 192 [RaisesException] ClientRectList repaintRects(Element element); | 192 [RaisesException] ClientRectList repaintRects(Element element); |
| 193 | 193 |
| 194 [RaisesException] void garbageCollectDocumentResources(Document document); | 194 [RaisesException] void garbageCollectDocumentResources(Document document); |
| 195 void evictAllResources(); | 195 void evictAllResources(); |
| 196 | 196 |
| 197 void allowRoundingHacks(); | 197 void allowRoundingHacks(); |
| 198 | 198 |
| 199 void insertAuthorCSS(Document document, DOMString css); | |
| 200 void insertUserCSS(Document document, DOMString css); | |
| 201 | |
| 202 unsigned long numberOfLiveNodes(); | 199 unsigned long numberOfLiveNodes(); |
| 203 unsigned long numberOfLiveDocuments(); | 200 unsigned long numberOfLiveDocuments(); |
| 204 sequence<DOMString> consoleMessageArgumentCounts(Document document); | 201 sequence<DOMString> consoleMessageArgumentCounts(Document document); |
| 205 Window openDummyInspectorFrontend(DOMString url); | 202 Window openDummyInspectorFrontend(DOMString url); |
| 206 void closeDummyInspectorFrontend(); | 203 void closeDummyInspectorFrontend(); |
| 207 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigne
d long maxDeadBytes, unsigned long totalBytes); | 204 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigne
d long maxDeadBytes, unsigned long totalBytes); |
| 208 [RaisesException] void setInspectorResourcesDataSizeLimits(long maximumResou
rcesContentSize, long maximumSingleResourceContentSize); | 205 [RaisesException] void setInspectorResourcesDataSizeLimits(long maximumResou
rcesContentSize, long maximumSingleResourceContentSize); |
| 209 | 206 |
| 210 DOMString counterValue(Element element); | 207 DOMString counterValue(Element element); |
| 211 long pageNumber(Element element, optional float pageWidth, optional float pa
geHeight); | 208 long pageNumber(Element element, optional float pageWidth, optional float pa
geHeight); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 [RaisesException] DOMString getImageSourceURL(Element element); | 253 [RaisesException] DOMString getImageSourceURL(Element element); |
| 257 | 254 |
| 258 boolean isSelectPopupVisible(Node node); | 255 boolean isSelectPopupVisible(Node node); |
| 259 | 256 |
| 260 [RaisesException] ClientRect selectionBounds(); | 257 [RaisesException] ClientRect selectionBounds(); |
| 261 | 258 |
| 262 boolean loseSharedGraphicsContext3D(); | 259 boolean loseSharedGraphicsContext3D(); |
| 263 | 260 |
| 264 [RaisesException] void forceCompositingUpdate(Document document); | 261 [RaisesException] void forceCompositingUpdate(Document document); |
| 265 }; | 262 }; |
| OLD | NEW |