chromium/third_party/blink/web_tests/http/tests/cookies/js-set-null.html

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="resources/cookies-test-style.css">
<script src="resources/cookies-test-pre.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script>
description("Setting document.cookie to null should set a cookie named 'null'");

clearAllCookies();

document.cookie = null;
shouldBe("document.cookie", "'null'");
testCookies("null");

clearCookies();

successfullyParsed = true;
</script>
<script src="resources/cookies-test-post.js"></script>
</body>
</html>