Title: [106081] trunk/LayoutTests
Revision
106081
Author
[email protected]
Date
2012-01-26 19:45:17 -0800 (Thu, 26 Jan 2012)

Log Message

fast/js/dfg-byte-array-put.html should assert the array size
https://bugs.webkit.org/show_bug.cgi?id=77173

Reviewed by Andy Estes.

* fast/js/dfg-byte-array-put-expected.txt:
* fast/js/script-tests/dfg-byte-array-put.js:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (106080 => 106081)


--- trunk/LayoutTests/ChangeLog	2012-01-27 03:34:47 UTC (rev 106080)
+++ trunk/LayoutTests/ChangeLog	2012-01-27 03:45:17 UTC (rev 106081)
@@ -1,3 +1,13 @@
+2012-01-26  Filip Pizlo  <[email protected]>
+
+        fast/js/dfg-byte-array-put.html should assert the array size
+        https://bugs.webkit.org/show_bug.cgi?id=77173
+
+        Reviewed by Andy Estes.
+
+        * fast/js/dfg-byte-array-put-expected.txt:
+        * fast/js/script-tests/dfg-byte-array-put.js:
+
 2012-01-26  Yuzo Fujishima  <[email protected]>
 
         [Chromium] Unreviewed test expectation change.

Modified: trunk/LayoutTests/fast/js/dfg-byte-array-put-expected.txt (106080 => 106081)


--- trunk/LayoutTests/fast/js/dfg-byte-array-put-expected.txt	2012-01-27 03:34:47 UTC (rev 106080)
+++ trunk/LayoutTests/fast/js/dfg-byte-array-put-expected.txt	2012-01-27 03:45:17 UTC (rev 106081)
@@ -3,6 +3,7 @@
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
 
 
+PASS data.length is 400
 PASS doGet(data, 0) is 0
 PASS doGet(data, 1) is 0
 PASS doGet(data, 2) is 0

Modified: trunk/LayoutTests/fast/js/script-tests/dfg-byte-array-put.js (106080 => 106081)


--- trunk/LayoutTests/fast/js/script-tests/dfg-byte-array-put.js	2012-01-27 03:34:47 UTC (rev 106080)
+++ trunk/LayoutTests/fast/js/script-tests/dfg-byte-array-put.js	2012-01-27 03:45:17 UTC (rev 106081)
@@ -15,6 +15,8 @@
 imageData = context.createImageData(10,10);
 data = ""
 
+shouldBe("data.length", "400");
+
 for (var i = 0; i < 1000; ++i) {
     doPut(data, i % 100, i - 100);
     var expectedValue;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to