https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f1016c6768b8c41100ecaab5e00da9c2853cdaf9 authored by James Graham on 22 April 2014, 20:07:16 UTC
Disable some tests that depend on https since we don't really support that yet.
Tip revision: f1016c6
001.html
<!doctype html>
<title>WebSockets: wrong accept key</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>
async_test(function(t) {
  var ws = new WebSocket(SCHEME_AND_DOMAIN+'/wrong_accept_key');
  ws.onclose = function(e) {
      t.done();
  }
});
</script>
back to top