second try to fix test failure from bug 643051 / cset b980d0cf9847

This commit is contained in:
Christian Biesinger 2011-04-08 18:33:32 -07:00
Родитель ac39fd84d4
Коммит 58fcf49038
1 изменённых файлов: 12 добавлений и 14 удалений

Просмотреть файл

@ -19,26 +19,24 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=643051
<script type="application/javascript">
/** Test for Bug 643051 **/
document.cookie = "foo=; expires=Thu, 01-Jan-1970 00:00:01 GMT"; // clear cookie
document.cookie = "foo2=; expires=Thu, 01-Jan-1970 00:00:01 GMT"; // clear cookie
document.cookie = "foo3=; expires=Thu, 01-Jan-1970 00:00:01 GMT"; // clear cookie
// clear cookie set by another test
document.cookie = "a=; expires=Thu, 01-Jan-1970 00:00:01 GMT";
document.cookie = "a=; expires=Thu, 01-Jan-1970 00:00:01 GMT"; // clear cookie
document.cookie = "a2=; expires=Thu, 01-Jan-1970 00:00:01 GMT"; // clear cookie
document.cookie = "a3=; expires=Thu, 01-Jan-1970 00:00:01 GMT"; // clear cookie
// single cookie, should work
document.cookie = "foo=bar";
is(document.cookie, "foo=bar", "Can't read stored cookie!");
document.cookie = "a=bar";
is(document.cookie, "a=bar", "Can't read stored cookie!");
document.cookie = "foo2=bar\nfoo3=bar";
is(document.cookie, "foo=bar; foo2=bar", "Wrong cookie value");
document.cookie = "a2=bar\na3=bar";
is(document.cookie, "a=bar; a2=bar", "Wrong cookie value");
document.cookie = "foo2=baz; foo3=bar";
is(document.cookie, "foo=bar; foo2=baz", "Wrong cookie value");
document.cookie = "a2=baz; a3=bar";
is(document.cookie, "a=bar; a2=baz", "Wrong cookie value");
// clear cookies again to avoid affecting other tests
document.cookie = "foo=; expires=Thu, 01-Jan-1970 00:00:01 GMT";
document.cookie = "foo2=; expires=Thu, 01-Jan-1970 00:00:01 GMT";
document.cookie = "foo3=; expires=Thu, 01-Jan-1970 00:00:01 GMT";
document.cookie = "a=; expires=Thu, 01-Jan-1970 00:00:01 GMT";
document.cookie = "a2=; expires=Thu, 01-Jan-1970 00:00:01 GMT";
document.cookie = "a3=; expires=Thu, 01-Jan-1970 00:00:01 GMT";
</script>
</pre>
</body>