blob: 7864f0e853d80708b2148c330067fb142324dbd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!doctype html>
<title>WebSockets: defineProperty getter for readyState</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=../../../constants.sub.js></script>
<meta name="variant" content="">
<meta name="variant" content="?wss">
<div id=log></div>
<script>
test(function() {
Object.defineProperty(WebSocket.prototype, 'readyState', {
get: function() { return 'foo'; }
});
var ws = new WebSocket('ws://example.invalid/');
assert_equals(ws.readyState, 'foo');
});
</script>
|