Home | History | Annotate | Download | only in script-tests
      1 description(
      2 'Test for &lt;<a href="rdar://problem/5666078">rdar://problem/5666078</a>&gt; Cookie parsing terminates at the first semicolon, ignoring quotes (<a href="https://bugs.webkit.org/show_bug.cgi?id=16699">16699</a>)'
      3 );
      4 
      5 clearAllCookies();
      6 
      7 debug("Check that setting a cookie with a semi-colon in a duoble-quoted value works");
      8 cookiesShouldBe('disorder="477beccb;richard";Version=1;Path=/', 'disorder="477beccb;richard"');
      9 clearCookies();
     10 
     11 successfullyParsed = true;
     12