Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.idl

Issue 2749503002: [wasm] enable wasm structured cloning in specific cases (Closed)
Patch Set: moved frame.html Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 // Returns a string with information about the mouse cursor used at the spec ified client location. 257 // Returns a string with information about the mouse cursor used at the spec ified client location.
258 DOMString getCurrentCursorInfo(); 258 DOMString getCurrentCursorInfo();
259 259
260 readonly attribute boolean cursorUpdatePending; 260 readonly attribute boolean cursorUpdatePending;
261 261
262 DOMString markerTextForListItem(Element element); 262 DOMString markerTextForListItem(Element element);
263 263
264 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer); 264 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer);
265 ArrayBuffer serializeObject(SerializedScriptValue obj); 265 ArrayBuffer serializeObject(SerializedScriptValue obj);
266 266
267 [CallWith=ScriptState] any deserializeBufferContainingWasm(ArrayBuffer buffe r);
268 ArrayBuffer serializeWithInlineWasm(any obj);
269
270
267 void forceReload(boolean endToEnd); 271 void forceReload(boolean endToEnd);
268 272
269 DOMString getImageSourceURL(Element element); 273 DOMString getImageSourceURL(Element element);
270 274
271 DOMString selectMenuListText(HTMLSelectElement select); 275 DOMString selectMenuListText(HTMLSelectElement select);
272 boolean isSelectPopupVisible(Node node); 276 boolean isSelectPopupVisible(Node node);
273 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex); 277 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex);
274 long selectPopupItemStyleFontHeight(Node select, long itemIndex); 278 long selectPopupItemStyleFontHeight(Node select, long itemIndex);
275 void resetTypeAheadSession(HTMLSelectElement select); 279 void resetTypeAheadSession(HTMLSelectElement select);
276 280
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 DOMString getProgrammaticScrollAnimationState(Node node); 373 DOMString getProgrammaticScrollAnimationState(Node node);
370 374
371 ClientRect visualRect(Node node); 375 ClientRect visualRect(Node node);
372 376
373 OriginTrialsTest originTrialsTest(); 377 OriginTrialsTest originTrialsTest();
374 378
375 void crash(); 379 void crash();
376 380
377 void setIsLowEndDevice(boolean isLowEndDevice); 381 void setIsLowEndDevice(boolean isLowEndDevice);
378 }; 382 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698