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

Side by Side Diff: LayoutTests/fast/dom/Window/script-tests/postmessage-clone.js

Issue 114363002: Structured cloning: improve DataCloneError reporting. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased + reset V8TestInterfaceConstructor.cpp result Created 7 years 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 document.getElementById("description").innerHTML = "Tests that we clone object h ierarchies"; 1 document.getElementById("description").innerHTML = "Tests that we clone object h ierarchies";
2 2
3 tryPostMessage('null'); 3 tryPostMessage('null');
4 tryPostMessage('undefined'); 4 tryPostMessage('undefined');
5 tryPostMessage('1'); 5 tryPostMessage('1');
6 tryPostMessage('true'); 6 tryPostMessage('true');
7 tryPostMessage('"1"'); 7 tryPostMessage('"1"');
8 tryPostMessage('({})'); 8 tryPostMessage('({})');
9 tryPostMessage('({a:1})'); 9 tryPostMessage('({a:1})');
10 tryPostMessage('({a:"a"})'); 10 tryPostMessage('({a:"a"})');
11 tryPostMessage('({b:"a", a:"b"})'); 11 tryPostMessage('({b:"a", a:"b"})');
12 tryPostMessage('({p0:"string0", p1:"string1", p2:"string2", p3:"string3", p4:"st ring4", p5:"string5", p6:"string6", p7:"string7", p8:"string8", p9:"string9", p1 0:"string10", p11:"string11", p12:"string12", p13:"string13", p14:"string14", p1 5:"string15", p16:"string16", p17:"string17", p18:"string18", p19:"string19"})') ; 12 tryPostMessage('({p0:"string0", p1:"string1", p2:"string2", p3:"string3", p4:"st ring4", p5:"string5", p6:"string6", p7:"string7", p8:"string8", p9:"string9", p1 0:"string10", p11:"string11", p12:"string12", p13:"string13", p14:"string14", p1 5:"string15", p16:"string16", p17:"string17", p18:"string18", p19:"string19"})') ;
13 tryPostMessage('({p0:"string1", p1:"string1", p2:"string2", p3:"string3", p4:"st ring4", p5:"string5", p6:"string6", p7:"string7", p8:"string8", p9:"string9", p1 0:"string10", p11:"string11", p12:"string12", p13:"string13", p14:"string14", p1 5:"string15", p16:"string16", p17:"string17", p18:"string18", p19:"string19"})') ; 13 tryPostMessage('({p0:"string1", p1:"string1", p2:"string2", p3:"string3", p4:"st ring4", p5:"string5", p6:"string6", p7:"string7", p8:"string8", p9:"string9", p1 0:"string10", p11:"string11", p12:"string12", p13:"string13", p14:"string14", p1 5:"string15", p16:"string16", p17:"string17", p18:"string18", p19:"string19"})') ;
14 tryPostMessage('({a:""})'); 14 tryPostMessage('({a:""})');
15 tryPostMessage('({a:0})'); 15 tryPostMessage('({a:0})');
16 tryPostMessage('({a:1})'); 16 tryPostMessage('({a:1})');
17 tryPostMessage('[]'); 17 tryPostMessage('[]');
18 tryPostMessage('["a", "a", "b", "a", "b"]'); 18 tryPostMessage('["a", "a", "b", "a", "b"]');
19 tryPostMessage('["a", "a", "b", {a:"b", b:"a"}]'); 19 tryPostMessage('["a", "a", "b", {a:"b", b:"a"}]');
20 tryPostMessage('[1,2,3]'); 20 tryPostMessage('[1,2,3]');
21 tryPostMessage('[,,1]'); 21 tryPostMessage('[,,1]');
22 tryPostMessage('(function(){})', true, null, DOMException.DATA_CLONE_ERR); 22 tryPostMessage('(function(){})', true, null, DOMException.DATA_CLONE_ERR);
23 tryPostMessage('var x = 0; try { eval("badref"); } catch(e) { x = e; } x', true, null, DOMException.DATA_CLONE_ERR); 23 tryPostMessage('var x = 0; try { eval("badref"); } catch(e) { x = e; } x', true, null, DOMException.DATA_CLONE_ERR);
24 var arrayBuffer = new ArrayBuffer(1);
25 tryPostMessage('"data"', false, null, 0, [arrayBuffer]);
26 tryPostMessage('arrayBuffer', true, null, DOMException.DATA_CLONE_ERR);
27 var uint8Array = new Uint8Array([10]);
28 tryPostMessage('"data"', false, null, 0, [uint8Array.buffer]);
29 tryPostMessage('uint8Array', true, null, DOMException.DATA_CLONE_ERR);
24 tryPostMessage('new Date(1234567890000)'); 30 tryPostMessage('new Date(1234567890000)');
25 tryPostMessage('new ConstructorWithPrototype("foo")', false, '({field:"foo"})'); 31 tryPostMessage('new ConstructorWithPrototype("foo")', false, '({field:"foo"})');
26 tryPostMessage('new Boolean(true)'); 32 tryPostMessage('new Boolean(true)');
27 tryPostMessage('new Boolean(false)'); 33 tryPostMessage('new Boolean(false)');
28 tryPostMessage('new String("gnirts")'); 34 tryPostMessage('new String("gnirts")');
29 tryPostMessage('new Number(42.0)'); 35 tryPostMessage('new Number(42.0)');
30 cyclicObject={}; 36 cyclicObject={};
31 cyclicObject.self = cyclicObject; 37 cyclicObject.self = cyclicObject;
32 tryPostMessage('cyclicObject', false, "cyclicObject"); 38 tryPostMessage('cyclicObject', false, "cyclicObject");
33 cyclicArray=[]; 39 cyclicArray=[];
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 doPassFail(v[0].length === window.fileList.length, "FileList length sent correctly"); 332 doPassFail(v[0].length === window.fileList.length, "FileList length sent correctly");
327 doPassFail(v[0][0] !== v[1], "FileList should not respect reference equality (0)"); 333 doPassFail(v[0][0] !== v[1], "FileList should not respect reference equality (0)");
328 doPassFail(v[0][1] !== v[2], "FileList should not respect reference equality (1)"); 334 doPassFail(v[0][1] !== v[2], "FileList should not respect reference equality (1)");
329 doPassFail(v[0][0].name == window.file0.name, "FileList preserves or der and data (name0)"); 335 doPassFail(v[0][0].name == window.file0.name, "FileList preserves or der and data (name0)");
330 doPassFail(v[0][1].name == window.file1.name, "FileList preserves or der and data (name1)"); 336 doPassFail(v[0][1].name == window.file1.name, "FileList preserves or der and data (name1)");
331 doPassFail(equal(v[0][0].lastModifiedDate, window.file0.lastModified Date), "FileList preserves order and data (date0)"); 337 doPassFail(equal(v[0][0].lastModifiedDate, window.file0.lastModified Date), "FileList preserves order and data (date0)");
332 doPassFail(equal(v[0][1].lastModifiedDate, window.file1.lastModified Date), "FileList preserves order and data (date1)"); 338 doPassFail(equal(v[0][1].lastModifiedDate, window.file1.lastModified Date), "FileList preserves order and data (date1)");
333 }); 339 });
334 } 340 }
335 tryPostMessage('"done"'); 341 tryPostMessage('"done"');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698