Home | History | Annotate | Download | only in script-tests
      1 description(
      2 "This test checks that cookies are correctly set using Max-Age."
      3 );
      4 
      5 clearAllCookies();
      6 
      7 debug("Check that setting a simple cookie works.");
      8 cookiesShouldBe("test=foobar; Max-Age=90000000", "test=foobar");
      9 clearCookies();
     10 
     11 debug("Check setting a cookie that timed out.");
     12 cookiesShouldBe("test2=foobar; Max-Age=0", "");
     13 clearCookies();
     14 
     15 successfullyParsed = true;
     16