https://github.com/web-platform-tests/wpt
Raw File
Tip revision: fde5297e01bba6c17ed7a80b606fa0e26e6c2c29 authored by Hallvord R. M. Steen on 01 April 2014, 12:49:35 UTC
minor bugfixes
Tip revision: fde5297
007.html
<!doctype html>
<title>WebSockets: new WebSocket(url, null char)</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("SyntaxError", function(){new WebSocket("ws://"+location.hostname+"/", 'a'+String.fromCharCode(0)+'b')})});
</script>
back to top