blob: 93b120088c87c1829a93b67c289cf2d621a8b369 [file] [log] [blame]
<!doctype html>
<title>WebSockets: defineProperty getter for constants</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>
var constants = ['CONNECTING', 'OPEN', 'CLOSING', 'CLOSED'];
for (var i = 0; i < constants.length; ++i) {
test(function() {
assert_throws(new TypeError(), function() {
Object.defineProperty(WebSocket.prototype, constants[i], {
get: function() { return 'foo'; }
});
});
}, "defineProperty getter " + constants[i]);
};
</script>