chromium/third_party/blink/web_tests/http/tests/cookies/multiple-cookies.html

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<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(
"This test checks that mulitple cookies are correctly set."
);

clearAllCookies();

debug("Check setting several cookies without clearing.");
cookiesShouldBe("test=foobar;", "test=foobar");
cookiesShouldBe("test2=foobar;", "test=foobar; test2=foobar");
cookiesShouldBe("test3=foobar;", "test=foobar; test2=foobar; test3=foobar");
clearCookies();

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