mirror of
https://github.com/servo/servo.git
synced 2025-08-25 07:08:21 +01:00
Update web-platform-tests to revision 4d96cccabc2feacd48e1dab9afc22b8af2225572
This commit is contained in:
parent
0d236288cc
commit
c66c6af0ba
1067 changed files with 63768 additions and 10900 deletions
|
@ -0,0 +1 @@
|
|||
importScripts("script.js");
|
|
@ -0,0 +1 @@
|
|||
postMessage('gamma');
|
|
@ -0,0 +1,4 @@
|
|||
var worker = new SharedWorker("subsharedworker.js");
|
||||
worker.port.onmessage = function(e) {
|
||||
postMessage(e.data);
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
onconnect = function(e) {
|
||||
e.source.postMessage('gamma');
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
postMessage("gamma");
|
|
@ -0,0 +1 @@
|
|||
gamma
|
|
@ -0,0 +1,4 @@
|
|||
var worker = new Worker("subworker.js");
|
||||
worker.onmessage = function(e) {
|
||||
postMessage(e.data);
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
var x = new XMLHttpRequest();
|
||||
x.open("GET", "test.txt", false);
|
||||
x.send();
|
||||
postMessage(x.response);
|
Loading…
Add table
Add a link
Reference in a new issue