summaryrefslogtreecommitdiffstats
path: root/LayoutTests/http/tests/cookies/script-tests/multiple-cookies.js
blob: 618e224cc269726d3a090f0420ae7d09cbbb0866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;