https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2844c3745a2e52eebd3620ea0a4ab9991ce17d5c authored by James Graham on 15 April 2018, 09:22:37 UTC
Fix prefs getter call in wptrunner Firefox executor
Tip revision: 2844c37
005.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>
<meta name="variant" content="">
<meta name="variant" content="?wss">
<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>
back to top