mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
18 lines
459 B
HTML
18 lines
459 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<META HTTP-EQUIV="Set-Cookie" CONTENT="meta=tag">
|
|
<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("message", "http://localhost:8888");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<img src="http://example.org/tests/extensions/cookie/test/image1.png" onload="runTest()" />
|
|
</body>
|
|
</html>
|