summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/filesystem/resources/op-restricted-unicode.js
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/filesystem/resources/op-restricted-unicode.js')
-rw-r--r--third_party/WebKit/LayoutTests/fast/filesystem/resources/op-restricted-unicode.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/filesystem/resources/op-restricted-unicode.js b/third_party/WebKit/LayoutTests/fast/filesystem/resources/op-restricted-unicode.js
index 5c1f1bf..d7aec51 100644
--- a/third_party/WebKit/LayoutTests/fast/filesystem/resources/op-restricted-unicode.js
+++ b/third_party/WebKit/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); },