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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/workers/semantics/encodings/004.html

Issue 2420483004: Revert of Worker: Import "imported/wpt/workers" tests (Closed)
Patch Set: Fix merge error Created 4 years, 2 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
(Empty)
1 <!--
2 onconnect = function(e) {
3 var xhr = new XMLHttpRequest();
4 xhr.open('GET', '003-1.py?x=å', false);
5 xhr.send();
6 var passed = xhr.responseText == 'PASS';
7 e.ports[0].postMessage(passed);
8 }
9 /*
10 -->
11 <!doctype html>
12 <title>URL encoding, shared worker</title>
13 <script src="/resources/testharness.js"></script>
14 <script src="/resources/testharnessreport.js"></script>
15 <div id=log></div>
16 <script>
17 async_test(function() {
18 var worker = new SharedWorker('#');
19 worker.port.onmessage = this.step_func(function(e) {
20 assert_true(e.data);
21 this.done();
22 });
23 });
24 </script>
25 <!--
26 */
27 //-->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698