mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-02 21:01:46 +00:00
19 lines
551 B
HTML
19 lines
551 B
HTML
<!doctype html>
|
|
<title>WebSockets: navigating nested browsing context with a websocket in top-level</title>
|
|
<meta name=timeout content=long>
|
|
<script src=/resources/testharness.js></script>
|
|
<script src=/resources/testharnessreport.js></script>
|
|
<script src=../constants.js?pipe=sub></script>
|
|
<div id=log></div>
|
|
<p>Test requires popup blocker disabled</p>
|
|
<div id=log></div>
|
|
<script>
|
|
var t = async_test(null, {timeout:15000});
|
|
t.step(function() {
|
|
var w = window.open("005-1.html");
|
|
add_result_callback(function() {
|
|
w.close();
|
|
});
|
|
});
|
|
</script>
|