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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/workers/constructors/SharedWorker/global-members.html

Issue 2711183003: Import wpt@a7e9c2abcf65b78fcf1c246fec6681c74e1bc352 (Closed)
Patch Set: Update test expectations and baselines. 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 <!-- 1 <!--
2 var expected = 'self location close onerror importScripts navigator addEventList ener removeEventListener dispatchEvent name applicationCache onconnect setTimeou t clearTimeout setInterval clearInterval'.split(' '); 2 var expected = 'self location close onerror importScripts navigator addEventList ener removeEventListener dispatchEvent name onconnect setTimeout clearTimeout se tInterval clearInterval'.split(' ');
3 var log = ''; 3 var log = '';
4 for (var i = 0; i < expected.length; ++i) { 4 for (var i = 0; i < expected.length; ++i) {
5 if (!(expected[i] in self)) 5 if (!(expected[i] in self))
6 log += expected[i] + ' did not exist\n'; 6 log += expected[i] + ' did not exist\n';
7 } 7 }
8 onconnect = function(e) { 8 onconnect = function(e) {
9 e.ports[0].postMessage(log); 9 e.ports[0].postMessage(log);
10 }; 10 };
11 /* 11 /*
12 --> 12 -->
(...skipping 12 matching lines...) Expand all
25 worker.port.start(); 25 worker.port.start();
26 }); 26 });
27 </script> 27 </script>
28 <!-- 28 <!--
29 */ 29 */
30 //--> 30 //-->
31 31
32 32
33 33
34 34
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/vertical-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698