Bug 1398574 - Update tests within websockets/ to comply with new toplevel data: URI navigation policy. r=jgraham,valentin

This commit is contained in:
Christoph Kerschbaumer 2017-09-11 13:14:57 +02:00
Родитель 85296b8b20
Коммит a773576eee
7 изменённых файлов: 34 добавлений и 8 удалений

Просмотреть файл

@ -316674,11 +316674,21 @@
{}
]
],
"websockets/unload-a-document/001-2.html": [
[
{}
]
],
"websockets/unload-a-document/002-1.html": [
[
{}
]
],
"websockets/unload-a-document/002-2.html": [
[
{}
]
],
"websockets/unload-a-document/005-1.html": [
[
{}
@ -639546,19 +639556,27 @@
"support"
],
"websockets/unload-a-document/001-1.html": [
"5388c58ec7f586a8c79da8955ea25ff0350a08ff",
"89f76dff719f15fce07b674aa4bcc971610da686",
"support"
],
"websockets/unload-a-document/001-2.html": [
"facbeee79f931d0ba88163abac18b38bff94f260",
"support"
],
"websockets/unload-a-document/001.html": [
"bcfd6cdc6b9dc497c3828fe0a77f1db3676be495",
"f78f6bc059375d19b8ac2619fba93b12e5506132",
"testharness"
],
"websockets/unload-a-document/002-1.html": [
"284ca768f294b0716ada9f2936f3862e075388c2",
"353ee429f9d6e90d86f0de251f7ad86f436ad4e2",
"support"
],
"websockets/unload-a-document/002-2.html": [
"e689149429d1e29775d7c7f6f5ad6afdde0a1b39",
"support"
],
"websockets/unload-a-document/002.html": [
"f39414dbf15f502f6be82324bbf389e75532cb6b",
"aaf934be13d0c9df63a1ff5da6d90cb290855b11",
"testharness"
],
"websockets/unload-a-document/003.html": [

Просмотреть файл

@ -22,7 +22,7 @@ t.step(function() {
}, 1000);
controller.navigate();
})
ws.onerror = ws.onmessage = ws.onclose = t.step_func(e => assert_unreached("Got unexpected event " + e.type));
ws.onerror = ws.onmessage = t.step_func(e => assert_unreached("Got unexpected event " + e.type));
}
});
</script>

Просмотреть файл

@ -0,0 +1,4 @@
<!doctype html>
<title>WebSockets: navigating top-level browsing context</title>
<body onload="history.back()"></body>
</html>

Просмотреть файл

@ -20,6 +20,6 @@ t.step(function() {
});
});
navigate = t.step_func(function() {
w.location = 'data:text/html,<body onload="history.back()">';
w.location = w.location.href.replace("001-1.html", "001-2.html");
});
</script>

Просмотреть файл

@ -28,7 +28,7 @@ t.step(function() {
controller.navigate();
});
})
ws.onerror = ws.onmessage = ws.onclose = t.step_func(e => assert_unreached("Got unexpected event " + e.type));
ws.onerror = ws.onmessage = t.step_func(e => assert_unreached("Got unexpected event " + e.type));
}
});
</script>

Просмотреть файл

@ -0,0 +1,4 @@
<!doctype html>
<title>WebSockets: navigating top-level browsing context with closed websocket</title>
<body onload="history.back()"></body>
</html>

Просмотреть файл

@ -21,6 +21,6 @@ t.step(function() {
});
});
navigate = t.step_func(function() {
w.location = 'data:text/html,<body onload="history.back()">';
w.location = w.location.href.replace("002-1.html", "002-2.html");
});
</script>