Title: [148532] trunk/LayoutTests
Revision
148532
Author
[email protected]
Date
2013-04-16 11:59:40 -0700 (Tue, 16 Apr 2013)

Log Message

Flaky Test: http/tests/security/cookies/third-party-cookie-blocking-user-action.html
https://bugs.webkit.org/show_bug.cgi?id=114511

Clear the test cookie at the beginning of the test to avoid failing if
the cookie is still around from a previous test.

Reviewed by Alexey Proskuryakov.

* http/tests/security/cookies/third-party-cookie-blocking-user-action.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (148531 => 148532)


--- trunk/LayoutTests/ChangeLog	2013-04-16 18:56:15 UTC (rev 148531)
+++ trunk/LayoutTests/ChangeLog	2013-04-16 18:59:40 UTC (rev 148532)
@@ -1,3 +1,15 @@
+2013-04-16  Jochen Eisinger  <[email protected]>
+
+        Flaky Test: http/tests/security/cookies/third-party-cookie-blocking-user-action.html
+        https://bugs.webkit.org/show_bug.cgi?id=114511
+
+        Clear the test cookie at the beginning of the test to avoid failing if
+        the cookie is still around from a previous test.
+
+        Reviewed by Alexey Proskuryakov.
+
+        * http/tests/security/cookies/third-party-cookie-blocking-user-action.html:
+
 2013-04-16  Robert Hogan  <[email protected]>
 
         Float at exact multiple of line-height affects too many lines

Modified: trunk/LayoutTests/http/tests/security/cookies/third-party-cookie-blocking-user-action.html (148531 => 148532)


--- trunk/LayoutTests/http/tests/security/cookies/third-party-cookie-blocking-user-action.html	2013-04-16 18:56:15 UTC (rev 148531)
+++ trunk/LayoutTests/http/tests/security/cookies/third-party-cookie-blocking-user-action.html	2013-04-16 18:59:40 UTC (rev 148532)
@@ -2,6 +2,8 @@
 <html>
 <title>Checks that a user generated POST request does not circumvent third-party cookie rules</title>
 <script>
+document.cookie = "test_cookie=0; path=/; expires=Thu, 01-Jan-1970 00:00:01 GMT";
+
 if (window.testRunner) {
     testRunner.waitUntilDone();
     testRunner.dumpAsText();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to