| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 | 208 |
| 209 DOMString counterValue(Element element); | 209 DOMString counterValue(Element element); |
| 210 long pageNumber(Element element, optional float pageWidth, optional float pa
geHeight); | 210 long pageNumber(Element element, optional float pageWidth, optional float pa
geHeight); |
| 211 DOMString[] shortcutIconURLs(Document document); | 211 DOMString[] shortcutIconURLs(Document document); |
| 212 DOMString[] allIconURLs(Document document); | 212 DOMString[] allIconURLs(Document document); |
| 213 long numberOfPages(optional double pageWidthInPixels, optional double pageHe
ightInPixels); | 213 long numberOfPages(optional double pageWidthInPixels, optional double pageHe
ightInPixels); |
| 214 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu
mber); | 214 [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); | 215 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long
width, long height, long marginTop, long marginRight, long marginBottom, long ma
rginLeft); |
| 216 | 216 |
| 217 [RaisesException] void setDeviceScaleFactor(float scaleFactor); | 217 [RaisesException] void setDeviceScaleFactor(float scaleFactor); |
| 218 [RaisesException] void setPageScaleFactor(float scaleFactor, long x, long y)
; | |
| 219 | 218 |
| 220 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib
le); | 219 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib
le); |
| 221 | 220 |
| 222 void webkitWillEnterFullScreenForElement(Document document, Element element)
; | 221 void webkitWillEnterFullScreenForElement(Document document, Element element)
; |
| 223 void webkitDidEnterFullScreenForElement(Document document, Element element); | 222 void webkitDidEnterFullScreenForElement(Document document, Element element); |
| 224 void webkitWillExitFullScreenForElement(Document document, Element element); | 223 void webkitWillExitFullScreenForElement(Document document, Element element); |
| 225 void webkitDidExitFullScreenForElement(Document document, Element element); | 224 void webkitDidExitFullScreenForElement(Document document, Element element); |
| 226 | 225 |
| 227 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); | 226 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); |
| 228 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch
eme); | 227 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch
eme); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 254 void enableMockSpeechSynthesizer(); | 253 void enableMockSpeechSynthesizer(); |
| 255 | 254 |
| 256 [RaisesException] DOMString getImageSourceURL(Element element); | 255 [RaisesException] DOMString getImageSourceURL(Element element); |
| 257 | 256 |
| 258 boolean isSelectPopupVisible(Node node); | 257 boolean isSelectPopupVisible(Node node); |
| 259 | 258 |
| 260 [RaisesException] ClientRect selectionBounds(); | 259 [RaisesException] ClientRect selectionBounds(); |
| 261 | 260 |
| 262 boolean loseSharedGraphicsContext3D(); | 261 boolean loseSharedGraphicsContext3D(); |
| 263 }; | 262 }; |
| OLD | NEW |