diff options
Diffstat (limited to 'testing/web-platform/tests/websockets/interfaces/WebSocket/send/003.html')
-rw-r--r-- | testing/web-platform/tests/websockets/interfaces/WebSocket/send/003.html | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/testing/web-platform/tests/websockets/interfaces/WebSocket/send/003.html b/testing/web-platform/tests/websockets/interfaces/WebSocket/send/003.html deleted file mode 100644 index 08aadbf46..000000000 --- a/testing/web-platform/tests/websockets/interfaces/WebSocket/send/003.html +++ /dev/null @@ -1,15 +0,0 @@ -<!doctype html> -<title>WebSockets: send() when readyState is CONNECTING</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(t) { - var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/'); - assert_throws("INVALID_STATE_ERR", function(){ws.send('a')}); -}); -</script> - |