Title: [187788] branches/safari-601.1-branch/LayoutTests
Revision
187788
Author
matthew_han...@apple.com
Date
2015-08-03 17:19:33 -0700 (Mon, 03 Aug 2015)

Log Message

Merge r187778. rdar://problem/22098457

Modified Paths

Diff

Modified: branches/safari-601.1-branch/LayoutTests/ChangeLog (187787 => 187788)


--- branches/safari-601.1-branch/LayoutTests/ChangeLog	2015-08-04 00:19:31 UTC (rev 187787)
+++ branches/safari-601.1-branch/LayoutTests/ChangeLog	2015-08-04 00:19:33 UTC (rev 187788)
@@ -1,5 +1,15 @@
 2015-08-03  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r187778. rdar://problem/22098457
+
+    2015-08-03  Brady Eidson  <beid...@apple.com>
+
+            Fix ASSERTy test added in r187752
+
+            * http/tests/appcache/resources/identifier-test-real.php: Only post one message.
+
+2015-08-03  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r187752. rdar://problem/22098457
 
     2015-08-03  Brady Eidson  <beid...@apple.com>

Modified: branches/safari-601.1-branch/LayoutTests/http/tests/appcache/resources/identifier-test-real.php (187787 => 187788)


--- branches/safari-601.1-branch/LayoutTests/http/tests/appcache/resources/identifier-test-real.php	2015-08-04 00:19:31 UTC (rev 187787)
+++ branches/safari-601.1-branch/LayoutTests/http/tests/appcache/resources/identifier-test-real.php	2015-08-04 00:19:33 UTC (rev 187788)
@@ -5,8 +5,13 @@
 <html manifest="identifier-test.manifest">
 <script>
 
+var sentMessage = false;
 function cached()
 {
+    if (sentMessage)
+        return;
+
+    sentMessage = true;
     window.opener.postMessage("Nice", "*");
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to