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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/sendbeacon/beacon-same-origin.html

Issue 2702113003: Move tests for sendBeacon to a separate dedicated directory for clearer ownership (Closed)
Patch Set: a 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="/js-test-resources/js-test.js"></script> 4 <script src="/js-test-resources/js-test.js"></script>
5 <script> 5 <script>
6 description("Testing navigator.sendBeacon() within same origin."); 6 description("Testing navigator.sendBeacon() within same origin.");
7 7
8 window.jsTestIsAsync = true; 8 window.jsTestIsAsync = true;
9 9
10 var binary_array = new Uint32Array(10); 10 var binary_array = new Uint32Array(10);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 testRunner.waitUntilDone(); 52 testRunner.waitUntilDone();
53 testRunner.dumpPingLoaderCallbacks(); 53 testRunner.dumpPingLoaderCallbacks();
54 } 54 }
55 testOne(); 55 testOne();
56 } 56 }
57 </script> 57 </script>
58 </head> 58 </head>
59 <body onload="test();"> 59 <body onload="test();">
60 </body> 60 </body>
61 </html> 61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698