001.html (460B)
1 <!doctype html> 2 <title>WebSockets: new WebSocket() with no args</title> 3 <script src=/resources/testharness.js></script> 4 <script src=/resources/testharnessreport.js></script> 5 <script src=../constants.sub.js></script> 6 <meta name="variant" content="?default"> 7 <meta name="variant" content="?wss"> 8 <meta name="variant" content="?wpt_flags=h2"> 9 <div id=log></div> 10 <script> 11 test(function() { 12 assert_throws_js(TypeError, function(){new WebSocket()}); 13 }); 14 </script>