Title: [101721] trunk/LayoutTests
Revision
101721
Author
[email protected]
Date
2011-12-01 16:49:57 -0800 (Thu, 01 Dec 2011)

Log Message

[FileSystem API] resolveLocalFileSystemURL required arguments
https://bugs.webkit.org/show_bug.cgi?id=69649

Patch by Mark Pilgrim <[email protected]> on 2011-12-01
Reviewed by Darin Adler.

* fast/filesystem/not-enough-arguments-expected.txt:
* fast/filesystem/not-enough-arguments.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (101720 => 101721)


--- trunk/LayoutTests/ChangeLog	2011-12-02 00:35:58 UTC (rev 101720)
+++ trunk/LayoutTests/ChangeLog	2011-12-02 00:49:57 UTC (rev 101721)
@@ -1,3 +1,13 @@
+2011-12-01  Mark Pilgrim  <[email protected]>
+
+        [FileSystem API] resolveLocalFileSystemURL required arguments
+        https://bugs.webkit.org/show_bug.cgi?id=69649
+
+        Reviewed by Darin Adler.
+
+        * fast/filesystem/not-enough-arguments-expected.txt:
+        * fast/filesystem/not-enough-arguments.html:
+
 2011-12-01  Vincent Scheib  <[email protected]>
 
         [Chromium] Fixing test_expectations error

Modified: trunk/LayoutTests/fast/filesystem/not-enough-arguments-expected.txt (101720 => 101721)


--- trunk/LayoutTests/fast/filesystem/not-enough-arguments-expected.txt	2011-12-02 00:35:58 UTC (rev 101720)
+++ trunk/LayoutTests/fast/filesystem/not-enough-arguments-expected.txt	2011-12-02 00:49:57 UTC (rev 101721)
@@ -3,6 +3,7 @@
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
 
 
+PASS webkitResolveLocalFileSystemURL() threw exception TypeError: Not enough arguments.
 Successfully obtained Persistent FileSystem:file__0:Temporary
 PASS fileSystem.root.removeRecursively() threw exception TypeError: Not enough arguments.
 PASS fileSystem.root.moveTo() threw exception TypeError: Not enough arguments.

Modified: trunk/LayoutTests/fast/filesystem/not-enough-arguments.html (101720 => 101721)


--- trunk/LayoutTests/fast/filesystem/not-enough-arguments.html	2011-12-02 00:35:58 UTC (rev 101720)
+++ trunk/LayoutTests/fast/filesystem/not-enough-arguments.html	2011-12-02 00:49:57 UTC (rev 101721)
@@ -47,6 +47,7 @@
 }
 
 if (window.webkitRequestFileSystem) {
+    shouldThrow("webkitResolveLocalFileSystemURL()");
     webkitRequestFileSystem(window.TEMPORARY, 100, successCallback, errorCallback);
     window.jsTestIsAsync = true;
 } else
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to