| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 // Returns a string with information about the mouse cursor used at the spec
ified client location. | 254 // Returns a string with information about the mouse cursor used at the spec
ified client location. |
| 255 DOMString getCurrentCursorInfo(); | 255 DOMString getCurrentCursorInfo(); |
| 256 | 256 |
| 257 readonly attribute boolean cursorUpdatePending; | 257 readonly attribute boolean cursorUpdatePending; |
| 258 | 258 |
| 259 DOMString markerTextForListItem(Element element); | 259 DOMString markerTextForListItem(Element element); |
| 260 | 260 |
| 261 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer); | 261 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer); |
| 262 ArrayBuffer serializeObject(SerializedScriptValue obj); | 262 ArrayBuffer serializeObject(SerializedScriptValue obj); |
| 263 | 263 |
| 264 [CallWith=ScriptState] any deserializeBufferContainingWasm(ArrayBuffer buffe
r); |
| 265 ArrayBuffer serializeWithInlineWasm(any obj); |
| 266 |
| 267 |
| 264 void forceReload(boolean endToEnd); | 268 void forceReload(boolean endToEnd); |
| 265 | 269 |
| 266 DOMString getImageSourceURL(Element element); | 270 DOMString getImageSourceURL(Element element); |
| 267 | 271 |
| 268 DOMString selectMenuListText(HTMLSelectElement select); | 272 DOMString selectMenuListText(HTMLSelectElement select); |
| 269 boolean isSelectPopupVisible(Node node); | 273 boolean isSelectPopupVisible(Node node); |
| 270 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex); | 274 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex); |
| 271 long selectPopupItemStyleFontHeight(Node select, long itemIndex); | 275 long selectPopupItemStyleFontHeight(Node select, long itemIndex); |
| 272 void resetTypeAheadSession(HTMLSelectElement select); | 276 void resetTypeAheadSession(HTMLSelectElement select); |
| 273 | 277 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 DOMString getProgrammaticScrollAnimationState(Node node); | 370 DOMString getProgrammaticScrollAnimationState(Node node); |
| 367 | 371 |
| 368 ClientRect visualRect(Node node); | 372 ClientRect visualRect(Node node); |
| 369 | 373 |
| 370 OriginTrialsTest originTrialsTest(); | 374 OriginTrialsTest originTrialsTest(); |
| 371 | 375 |
| 372 void crash(); | 376 void crash(); |
| 373 | 377 |
| 374 void setIsLowEndDevice(boolean isLowEndDevice); | 378 void setIsLowEndDevice(boolean isLowEndDevice); |
| 375 }; | 379 }; |
| OLD | NEW |