https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b067367c0d6ee430fab16403aa2964c95663e59c authored by Michael[tm] Smith on 23 June 2015, 10:22:34 UTC
Removed {% raw %} and {% endraw %} stuff.
Tip revision: b067367
001.html
<!doctype html>
<title>WebSockets: new WebSocket() with no args</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=../constants.js?pipe=sub></script>
<div id=log></div>
<script>
test(function() {
  assert_throws(new TypeError(), function(){new WebSocket()});
});
</script>
back to top