blob: 3f0a2a289403d2ba122c6d728b22ad575746e835 [file] [log] [blame]
<!doctype html>
<title>WebSockets: deleting url</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() {
var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/');
delete ws.url;
assert_equals(ws.url, SCHEME_DOMAIN_PORT+'/', 'delete ws.url');
delete WebSocket.prototype.url;
assert_equals(ws.url, undefined, 'delete WebSocket.prototype.url');
});
</script>