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