blob: 0baae451e4eb2c5cd970197d7fc6526eb7730d94 [file] [log] [blame]
<body>
<p>Test that setting a document.cookie to an empty value has no effect</p>
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
document.cookie = "";
document.write(document.cookie ? "FAILURE" : "SUCCESS");
if (document.cookie)
document.write(': "' + document.cookie + '"');
</script>
</body>