mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
16 lines
508 B
HTML
16 lines
508 B
HTML
|
|
<!DOCTYPE HTML>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script type="text/javascript">
|
||
|
|
function runTest() {
|
||
|
|
document.cookie = "can=has";
|
||
|
|
|
||
|
|
// send a message to our test document, to say we're done loading
|
||
|
|
window.opener.postMessage("f_lf_i msg data img", "http://mochi.test:8888");
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="window.opener.postMessage('f_lf_i msg data page', 'http://mochi.test:8888');">
|
||
|
|
<img src="http://example.org/tests/extensions/cookie/test/beltzner.jpg" onload="runTest()" />
|
||
|
|
</body>
|
||
|
|
</html>
|