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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/Window/window-postmessage-clone-deep-array.html

Issue 2667393002: Stop using script-tests in fast/dom/. (Closed)
Patch Set: . Created 3 years, 10 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 <html> 1 <html>
2 <head></head> 2 <head></head>
3 <body> 3 <body>
4 <div id="description"></div> 4 <div id="description"></div>
5 <input type="file" id="fileInput" multiple></input> 5 <input type="file" id="fileInput" multiple></input>
6 <div id="console"></div> 6 <div id="console"></div>
7 <script src="script-tests/postmessage-test.js"></script> 7 <script src="resources/postmessage-test.js"></script>
8 <script src="script-tests/postmessage-clone-deep-array.js"></script> 8 <script>
9 document.getElementById("description").innerHTML = "Tests that we support clonin g deep(ish) arrays.";
10 deepArray=[];
11 for (var i = 0; i < 10000; i++)
12 deepArray=[deepArray];
13 tryPostMessage('deepArray');
14 tryPostMessage('"done"');
15 </script>
9 </body> 16 </body>
10 </html> 17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698