Title: [216964] trunk/LayoutTests
Revision
216964
Author
jiewen_...@apple.com
Date
2017-05-16 18:17:34 -0700 (Tue, 16 May 2017)

Log Message

Unreviewed, fix LayoutTests/plugins/navigator-plugin-crash.html
<rdar://problem/32236478>

* plugins/navigator-plugin-crash-expected.txt:
* plugins/navigator-plugin-crash.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (216963 => 216964)


--- trunk/LayoutTests/ChangeLog	2017-05-17 01:01:56 UTC (rev 216963)
+++ trunk/LayoutTests/ChangeLog	2017-05-17 01:17:34 UTC (rev 216964)
@@ -1,3 +1,11 @@
+2017-05-16  Jiewen Tan  <jiewen_...@apple.com>
+
+        Unreviewed, fix LayoutTests/plugins/navigator-plugin-crash.html
+        <rdar://problem/32236478>
+
+        * plugins/navigator-plugin-crash-expected.txt:
+        * plugins/navigator-plugin-crash.html:
+
 2017-05-16  Chris Dumez  <cdu...@apple.com>
 
         Implement DOMMatrix / DOMMatrixReadOnly

Modified: trunk/LayoutTests/plugins/navigator-plugin-crash-expected.txt (216963 => 216964)


--- trunk/LayoutTests/plugins/navigator-plugin-crash-expected.txt	2017-05-17 01:01:56 UTC (rev 216963)
+++ trunk/LayoutTests/plugins/navigator-plugin-crash-expected.txt	2017-05-17 01:17:34 UTC (rev 216964)
@@ -1 +1 @@
-Test passes if WebKit doesn't crash. {"0":null,"1":null}
+Test passes if WebKit doesn't crash.

Modified: trunk/LayoutTests/plugins/navigator-plugin-crash.html (216963 => 216964)


--- trunk/LayoutTests/plugins/navigator-plugin-crash.html	2017-05-17 01:01:56 UTC (rev 216963)
+++ trunk/LayoutTests/plugins/navigator-plugin-crash.html	2017-05-17 01:17:34 UTC (rev 216964)
@@ -18,7 +18,9 @@
         var data = ""
         t1.close();
         setTimeout(function() {
-            document.body.innerHTML += JSON.stringify(data);
+            // Do not expect crashes.
+            JSON.stringify(data);
+
             if (window.testRunner)
                 testRunner.notifyDone();
         }, 200);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to