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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 [RaisesException] void forceFullRepaint(Document document); | 259 [RaisesException] void forceFullRepaint(Document document); |
260 | 260 |
261 // Returns a list of draggable/non-draggable regions in the document. | 261 // Returns a list of draggable/non-draggable regions in the document. |
262 [RaisesException] ClientRectList draggableRegions(Document document); | 262 [RaisesException] ClientRectList draggableRegions(Document document); |
263 [RaisesException] ClientRectList nonDraggableRegions(Document document); | 263 [RaisesException] ClientRectList nonDraggableRegions(Document document); |
264 | 264 |
265 // Returns a string with information about the mouse cursor used at the spec
ified client location. | 265 // Returns a string with information about the mouse cursor used at the spec
ified client location. |
266 DOMString getCurrentCursorInfo(); | 266 DOMString getCurrentCursorInfo(); |
267 | 267 |
268 readonly attribute boolean cursorUpdatePending; | 268 readonly attribute boolean cursorUpdatePending; |
| 269 readonly attribute boolean fakeMouseMovePending; |
269 | 270 |
270 DOMString markerTextForListItem(Element element); | 271 DOMString markerTextForListItem(Element element); |
271 | 272 |
272 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer); | 273 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer); |
273 ArrayBuffer serializeObject(SerializedScriptValue obj); | 274 ArrayBuffer serializeObject(SerializedScriptValue obj); |
274 | 275 |
275 [CallWith=ScriptState] any deserializeBufferContainingWasm(ArrayBuffer buffe
r); | 276 [CallWith=ScriptState] any deserializeBufferContainingWasm(ArrayBuffer buffe
r); |
276 ArrayBuffer serializeWithInlineWasm(any obj); | 277 ArrayBuffer serializeWithInlineWasm(any obj); |
277 | 278 |
278 | 279 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 DOMString getProgrammaticScrollAnimationState(Node node); | 383 DOMString getProgrammaticScrollAnimationState(Node node); |
383 | 384 |
384 ClientRect visualRect(Node node); | 385 ClientRect visualRect(Node node); |
385 | 386 |
386 OriginTrialsTest originTrialsTest(); | 387 OriginTrialsTest originTrialsTest(); |
387 | 388 |
388 void crash(); | 389 void crash(); |
389 | 390 |
390 void setIsLowEndDevice(boolean isLowEndDevice); | 391 void setIsLowEndDevice(boolean isLowEndDevice); |
391 }; | 392 }; |
OLD | NEW |