Title: [119454] trunk/LayoutTests
Revision
119454
Author
leo.y...@torchmobile.com.cn
Date
2012-06-04 21:29:31 -0700 (Mon, 04 Jun 2012)

Log Message

Syntax error in fast/filesystem/resources/file-writer-gc-blob.js
https://bugs.webkit.org/show_bug.cgi?id=87939

Reviewed by Alexey Proskuryakov.

* fast/filesystem/resources/file-writer-gc-blob.js: Add parentheses around the blob data.
(startWrite):

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (119453 => 119454)


--- trunk/LayoutTests/ChangeLog	2012-06-05 03:17:15 UTC (rev 119453)
+++ trunk/LayoutTests/ChangeLog	2012-06-05 04:29:31 UTC (rev 119454)
@@ -1,3 +1,13 @@
+2012-06-04  Leo Yang  <leo.y...@torchmobile.com.cn>
+
+        Syntax error in fast/filesystem/resources/file-writer-gc-blob.js
+        https://bugs.webkit.org/show_bug.cgi?id=87939
+
+        Reviewed by Alexey Proskuryakov.
+
+        * fast/filesystem/resources/file-writer-gc-blob.js: Add parentheses around the blob data.
+        (startWrite):
+
 2012-06-04  Jessie Berlin  <jber...@apple.com>
 
         Skip more tests on Windows to get the bots greener.

Modified: trunk/LayoutTests/fast/filesystem/resources/file-writer-gc-blob.js (119453 => 119454)


--- trunk/LayoutTests/fast/filesystem/resources/file-writer-gc-blob.js	2012-06-05 03:17:15 UTC (rev 119453)
+++ trunk/LayoutTests/fast/filesystem/resources/file-writer-gc-blob.js	2012-06-05 04:29:31 UTC (rev 119454)
@@ -23,7 +23,7 @@
 
 function startWrite(writer) {
     // Let's make it about a megabyte.
-    var blob = tenXBlob(new Blob["lorem ipsum"]);
+    var blob = tenXBlob(new Blob(["lorem ipsum"]));
     blob = tenXBlob(blob);
     blob = tenXBlob(blob);
     blob = tenXBlob(blob);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to