| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 [RaisesException] void garbageCollectDocumentResources(Document document); | 185 [RaisesException] void garbageCollectDocumentResources(Document document); |
| 186 | 186 |
| 187 void allowRoundingHacks(); | 187 void allowRoundingHacks(); |
| 188 | 188 |
| 189 void insertAuthorCSS(Document document, DOMString css); | 189 void insertAuthorCSS(Document document, DOMString css); |
| 190 void insertUserCSS(Document document, DOMString css); | 190 void insertUserCSS(Document document, DOMString css); |
| 191 | 191 |
| 192 unsigned long numberOfLiveNodes(); | 192 unsigned long numberOfLiveNodes(); |
| 193 unsigned long numberOfLiveDocuments(); | 193 unsigned long numberOfLiveDocuments(); |
| 194 sequence<DOMString> consoleMessageArgumentCounts(Document document); | 194 sequence<DOMString> consoleMessageArgumentCounts(Document document); |
| 195 DOMWindow openDummyInspectorFrontend(DOMString url); | 195 Window openDummyInspectorFrontend(DOMString url); |
| 196 void closeDummyInspectorFrontend(); | 196 void closeDummyInspectorFrontend(); |
| 197 [RaisesException] void setInspectorResourcesDataSizeLimits(long maximumResou
rcesContentSize, long maximumSingleResourceContentSize); | 197 [RaisesException] void setInspectorResourcesDataSizeLimits(long maximumResou
rcesContentSize, long maximumSingleResourceContentSize); |
| 198 | 198 |
| 199 DOMString counterValue(Element element); | 199 DOMString counterValue(Element element); |
| 200 long pageNumber(Element element, optional float pageWidth, optional float pa
geHeight); | 200 long pageNumber(Element element, optional float pageWidth, optional float pa
geHeight); |
| 201 DOMString[] shortcutIconURLs(Document document); | 201 DOMString[] shortcutIconURLs(Document document); |
| 202 DOMString[] allIconURLs(Document document); | 202 DOMString[] allIconURLs(Document document); |
| 203 long numberOfPages(optional double pageWidthInPixels, optional double pageHe
ightInPixels); | 203 long numberOfPages(optional double pageWidthInPixels, optional double pageHe
ightInPixels); |
| 204 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu
mber); | 204 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu
mber); |
| 205 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long
width, long height, long marginTop, long marginRight, long marginBottom, long ma
rginLeft); | 205 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long
width, long height, long marginTop, long marginRight, long marginBottom, long ma
rginLeft); |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 void setUsesOverlayScrollbars(boolean enabled); | 238 void setUsesOverlayScrollbars(boolean enabled); |
| 239 | 239 |
| 240 void forceReload(boolean endToEnd); | 240 void forceReload(boolean endToEnd); |
| 241 | 241 |
| 242 void enableMockSpeechSynthesizer(); | 242 void enableMockSpeechSynthesizer(); |
| 243 | 243 |
| 244 [RaisesException] DOMString getImageSourceURL(Element element); | 244 [RaisesException] DOMString getImageSourceURL(Element element); |
| 245 | 245 |
| 246 boolean isSelectPopupVisible(Node node); | 246 boolean isSelectPopupVisible(Node node); |
| 247 }; | 247 }; |
| OLD | NEW |