Title: [215770] trunk/JSTests
Revision
215770
Author
mark....@apple.com
Date
2017-04-25 16:50:59 -0700 (Tue, 25 Apr 2017)

Log Message

[Follow up] Array.prototype.slice() should ensure that end >= begin.
https://bugs.webkit.org/show_bug.cgi?id=170989
<rdar://problem/31705652>

Not reviewed.

Follow up to rename a test file that was accidentally named wrongly.

* stress/regress-170989.js: Copied from JSTests/stress/regress-170989.patch.
* stress/regress-170989.patch: Removed.

Modified Paths

Added Paths

Removed Paths

Diff

Modified: trunk/JSTests/ChangeLog (215769 => 215770)


--- trunk/JSTests/ChangeLog	2017-04-25 23:49:14 UTC (rev 215769)
+++ trunk/JSTests/ChangeLog	2017-04-25 23:50:59 UTC (rev 215770)
@@ -1,5 +1,18 @@
 2017-04-25  Mark Lam  <mark....@apple.com>
 
+        [Follow up] Array.prototype.slice() should ensure that end >= begin.
+        https://bugs.webkit.org/show_bug.cgi?id=170989
+        <rdar://problem/31705652>
+
+        Not reviewed.
+
+        Follow up to rename a test file that was accidentally named wrongly.
+
+        * stress/regress-170989.js: Copied from JSTests/stress/regress-170989.patch.
+        * stress/regress-170989.patch: Removed.
+
+2017-04-25  Mark Lam  <mark....@apple.com>
+
         Array.prototype.slice() should ensure that end >= begin.
         https://bugs.webkit.org/show_bug.cgi?id=170989
         <rdar://problem/31705652>

Copied: trunk/JSTests/stress/regress-170989.js (from rev 215769, trunk/JSTests/stress/regress-170989.patch) (0 => 215770)


--- trunk/JSTests/stress/regress-170989.js	                        (rev 0)
+++ trunk/JSTests/stress/regress-170989.js	2017-04-25 23:50:59 UTC (rev 215770)
@@ -0,0 +1,7 @@
+class C extends Array {}
+var c = new C();
+c.push(2,4,6);
+var result = c.slice(9,2);
+if (result.length)
+    throw ("FAILED: expected 0, actual " + result.length);
+

Deleted: trunk/JSTests/stress/regress-170989.patch (215769 => 215770)


--- trunk/JSTests/stress/regress-170989.patch	2017-04-25 23:49:14 UTC (rev 215769)
+++ trunk/JSTests/stress/regress-170989.patch	2017-04-25 23:50:59 UTC (rev 215770)
@@ -1,7 +0,0 @@
-class C extends Array {}
-var c = new C();
-c.push(2,4,6);
-var result = c.slice(9,2);
-if (result.length)
-    throw ("FAILED: expected 0, actual " + result.length);
-
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to