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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 // Returns a string with information about the mouse cursor used at the spec
ified client location. | 241 // Returns a string with information about the mouse cursor used at the spec
ified client location. |
242 [RaisesException] DOMString getCurrentCursorInfo(Document document); | 242 [RaisesException] DOMString getCurrentCursorInfo(Document document); |
243 | 243 |
244 [RaisesException] DOMString markerTextForListItem(Element element); | 244 [RaisesException] DOMString markerTextForListItem(Element element); |
245 | 245 |
246 [RaisesException] DOMString baseURL(Document document); | 246 [RaisesException] DOMString baseURL(Document document); |
247 | 247 |
248 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer); | 248 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer); |
249 ArrayBuffer serializeObject(SerializedScriptValue obj); | 249 ArrayBuffer serializeObject(SerializedScriptValue obj); |
250 | 250 |
251 void setUsesOverlayScrollbars(boolean enabled); | |
252 | |
253 void forceReload(boolean endToEnd); | 251 void forceReload(boolean endToEnd); |
254 | 252 |
255 void enableMockSpeechSynthesizer(); | 253 void enableMockSpeechSynthesizer(); |
256 | 254 |
257 [RaisesException] DOMString getImageSourceURL(Element element); | 255 [RaisesException] DOMString getImageSourceURL(Element element); |
258 | 256 |
259 boolean isSelectPopupVisible(Node node); | 257 boolean isSelectPopupVisible(Node node); |
260 | 258 |
261 [RaisesException] ClientRect selectionBounds(); | 259 [RaisesException] ClientRect selectionBounds(); |
262 | 260 |
263 boolean loseSharedGraphicsContext3D(); | 261 boolean loseSharedGraphicsContext3D(); |
264 }; | 262 }; |
OLD | NEW |