summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/constructor/018.html
blob: d96d4be6b655a2441d48753e1556cfd815eb74f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<title>WebSockets: NULL char in url</title>
<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>
<script>
async_test(function(t) {
  var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/echo-query?x\u0000y\u0000');
  ws.onmessage = t.step_func(function(e) {
    assert_equals(e.data, 'x%00y');
    ws.close();
    t.done();
  })
  ws.onclose = ws.onerror = t.step_func(function(e) {assert_unreached(e.type)});
});
</script>