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

Unified Diff: LayoutTests/fast/filesystem/resources/op-restricted-unicode.js

Issue 22831019: Deprecate FileError in FileAPI (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: win test expectation fix (temporary) Created 7 years, 4 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
Index: LayoutTests/fast/filesystem/resources/op-restricted-unicode.js
diff --git a/LayoutTests/fast/filesystem/resources/op-restricted-unicode.js b/LayoutTests/fast/filesystem/resources/op-restricted-unicode.js
index 5c1f1bf54582277ae83cf827c2edb2b130022363..d7aec519bc7c51f10c99ad50eb3aab0fcdfdc980 100644
--- a/LayoutTests/fast/filesystem/resources/op-restricted-unicode.js
+++ b/LayoutTests/fast/filesystem/resources/op-restricted-unicode.js
@@ -6,7 +6,7 @@ var testCases = [
function(helper) { helper.getFile('/', 'ab', {create:true}); },
// Embedded NULs aren't allowed; anything else in the first 32 is fair game.
- function(helper) { helper.getFile('/', 'a\u0000b', {create:true}, FileError.INVALID_MODIFICATION_ERR); },
+ function(helper) { helper.getFile('/', 'a\u0000b', {create:true}, 'InvalidModificationError'); },
function(helper) { helper.getFile('/', 'a\u0001b', {create:true}, 0); },
function(helper) { helper.getFile('/', 'a\u0002b', {create:true}, 0); },
function(helper) { helper.getFile('/', 'a\u0003b', {create:true}, 0); },
« no previous file with comments | « LayoutTests/fast/filesystem/resources/op-restricted-names.js ('k') | LayoutTests/fast/filesystem/resources/op-tests-helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698