Title: [215005] releases/WebKitGTK/webkit-2.14/LayoutTests
Revision
215005
Author
carlo...@webkit.org
Date
2017-04-06 02:35:44 -0700 (Thu, 06 Apr 2017)

Log Message

Merge r212020 - Unreviewed, fix test for new .caller with native code caller semantics.

* js/dom/function-dot-arguments-and-caller.html:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.14/LayoutTests/ChangeLog (215004 => 215005)


--- releases/WebKitGTK/webkit-2.14/LayoutTests/ChangeLog	2017-04-06 09:35:38 UTC (rev 215004)
+++ releases/WebKitGTK/webkit-2.14/LayoutTests/ChangeLog	2017-04-06 09:35:44 UTC (rev 215005)
@@ -1,3 +1,9 @@
+2017-02-09  Keith Miller  <keith_mil...@apple.com>
+
+        Unreviewed, fix test for new .caller with native code caller semantics.
+
+        * js/dom/function-dot-arguments-and-caller.html:
+
 2017-02-09  Ryosuke Niwa  <rn...@webkit.org>
 
         Adopting a child node of a script element can run script

Modified: releases/WebKitGTK/webkit-2.14/LayoutTests/js/dom/function-dot-arguments-and-caller.html (215004 => 215005)


--- releases/WebKitGTK/webkit-2.14/LayoutTests/js/dom/function-dot-arguments-and-caller.html	2017-04-06 09:35:38 UTC (rev 215004)
+++ releases/WebKitGTK/webkit-2.14/LayoutTests/js/dom/function-dot-arguments-and-caller.html	2017-04-06 09:35:44 UTC (rev 215005)
@@ -80,7 +80,7 @@
 eval('(function f() { return f.caller instanceof Object ? "FAIL" : "PASS"; })()'),
 
 (function f() {
-    return String({ toString: function g() { return g.caller instanceof Object ? "PASS" : "FAIL"; } });
+    return String({ toString: function g() { return g.caller instanceof Object ? "FAIL" : "PASS"; } });
 })(),
 
 (function f() {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to