mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-07 08:59:08 +00:00
28 lines
1014 B
HTML
28 lines
1014 B
HTML
<!doctype html>
|
|
<title>WebSockets: setting Secure cookie with document.cookie, checking ws request</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 cookie_id = ((new Date())-0) + '.' + Math.random();
|
|
async_test(function(t) {
|
|
if (window.WebSocket) {
|
|
document.cookie = 'ws_test_'+cookie_id+'=test; Path=/; Secure';
|
|
}
|
|
var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/echo-cookie');
|
|
ws.onmessage = t.step_func(function(e) {
|
|
ws.close();
|
|
if (SCHEME_DOMAIN_PORT.substr(0,3) == 'wss') {
|
|
assert_regexp_match(e.data, new RegExp('ws_test_'+cookie_id+'=test'));
|
|
} else {
|
|
assert_false(new RegExp('ws_test_'+cookie_id+'=test').test(e.data));
|
|
}
|
|
t.done();
|
|
})
|
|
ws.onclose = t.step_func(function() {assert_unreached()});
|
|
});
|
|
// remove cookie
|
|
document.cookie = 'ws_test_'+cookie_id+'; Path=/; Secure; Expires=Sun, 06 Nov 1994 08:49:37 GMT';
|
|
</script>
|