summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/constructor/005.html
blob: 63e61ddb090f208fbce78c764e8884cabb684879 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!doctype html>
<title>WebSockets: return value</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>
test(function() {
  assert_true(new WebSocket(SCHEME_DOMAIN_PORT + '/empty-message') instanceof WebSocket);
});
</script>