Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Unified Diff: LayoutTests/storage/indexeddb/structured-clone.html

Issue 414223008: IndexedDB: Enable Blob/File/FileList structured clone tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/storage/indexeddb/structured-clone-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/storage/indexeddb/structured-clone.html
diff --git a/LayoutTests/storage/indexeddb/structured-clone.html b/LayoutTests/storage/indexeddb/structured-clone.html
index 3adb317d1380ba4799f60bb3fc8420c1487d7891..11b30279cb8c697447302d13bfa10938d807a43d 100644
--- a/LayoutTests/storage/indexeddb/structured-clone.html
+++ b/LayoutTests/storage/indexeddb/structured-clone.html
@@ -357,12 +357,6 @@ function testBlob(callback)
{
debug("Testing Blob");
- // FIXME: Blob, File, and FileList support is incomplete.
- // http://crbug.com/108012
- debug("Skipping test");
- callback();
- return;
-
shouldBeTrue("FileReader != null");
evalAndLog("test_content = 'This is a test. This is only a test.'");
evalAndLog("test_data = new Blob([test_content])");
@@ -399,12 +393,6 @@ function testFile(callback)
{
debug("Testing File");
- // FIXME: Blob, File, and FileList support is incomplete.
- // http://crbug.com/108012
- debug("Skipping test");
- callback();
- return;
-
evalAndLog("test_content = fileInput.files[0]");
self.test_data = test_content;
@@ -419,12 +407,6 @@ function testFileList(callback)
{
debug("Testing FileList");
- // FIXME: Blob, File, and FileList support is incomplete.
- // http://crbug.com/108012
- debug("Skipping test");
- callback();
- return;
-
evalAndLog("test_content = fileInput.files");
self.test_data = test_content;
« no previous file with comments | « no previous file | LayoutTests/storage/indexeddb/structured-clone-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698