Index: LayoutTests/fast/files/blob-constructor-expected.txt |
diff --git a/LayoutTests/fast/files/blob-constructor-expected.txt b/LayoutTests/fast/files/blob-constructor-expected.txt |
index 7fa7eb120a0927cbf7874146682b4fb41cad151e..0de8a91e6d8c549e0989891ec5949b3b05392b0e 100644 |
--- a/LayoutTests/fast/files/blob-constructor-expected.txt |
+++ b/LayoutTests/fast/files/blob-constructor-expected.txt |
@@ -28,10 +28,11 @@ PASS (new Blob([], {unknownKey:'value'})) instanceof window.Blob is true |
PASS new Blob([], {endings:'illegalValue'}) threw exception TypeError: Failed to construct 'Blob': The provided value 'illegalValue' is not a valid enum value of type NormalizeLineEndings.. |
PASS new Blob([], {endings:throwingObj}) threw exception Error. |
PASS new Blob([], {type:throwingObj}) threw exception Error. |
-PASS new Blob([], {type:'helloĆ®'}) threw exception SyntaxError: Failed to construct 'Blob': The 'type' property must consist of ASCII characters.. |
PASS new Blob([], {endings:throwingObj1, type:throwingObj2}) threw exception Error 1. |
PASS new Blob([], {type:throwingObj2, endings:throwingObj1}) threw exception Error 1. |
PASS new Blob([], {type:throwingObj2, endings:'illegal'}) threw exception TypeError: Failed to construct 'Blob': The provided value 'illegal' is not a valid enum value of type NormalizeLineEndings.. |
+PASS new Blob([], {type:'helloĆ®'}).type is "" |
+PASS new Blob([], {type:'123ABCabc'}).type is "123abcabc" |
PASS (new Blob([], null)) instanceof window.Blob is true |
PASS (new Blob([], undefined)) instanceof window.Blob is true |
PASS (new Blob([], 123)) instanceof window.Blob threw exception TypeError: Failed to construct 'Blob': parameter 2 ('options') is not an object.. |