Index: third_party/WebKit/LayoutTests/virtual/sharedarraybuffer/fast/files/blob-constructor-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/virtual/sharedarraybuffer/fast/files/blob-constructor-expected.txt b/third_party/WebKit/LayoutTests/virtual/sharedarraybuffer/fast/files/blob-constructor-expected.txt |
index 195ef386008c3dd1c3214a3ae6575602d687fdf5..fba6ca59a110bce19e4a98c606947e97e309e737 100644 |
--- a/third_party/WebKit/LayoutTests/virtual/sharedarraybuffer/fast/files/blob-constructor-expected.txt |
+++ b/third_party/WebKit/LayoutTests/virtual/sharedarraybuffer/fast/files/blob-constructor-expected.txt |
@@ -15,9 +15,9 @@ PASS (new Blob()).size is 0 |
PASS (new Blob(undefined)).size is 0 |
PASS (new Blob()).type is "" |
PASS (new Blob(undefined)).type is "" |
-PASS new Blob('hello') threw exception TypeError: Failed to construct 'Blob': The 1st argument is neither an array, nor does it have indexed properties.. |
-PASS new Blob(0) threw exception TypeError: Failed to construct 'Blob': The 1st argument is neither an array, nor does it have indexed properties.. |
-PASS new Blob(null) threw exception TypeError: Failed to construct 'Blob': The 1st argument is neither an array, nor does it have indexed properties.. |
+PASS new Blob('hello') threw exception TypeError: Failed to construct 'Blob': The provided value cannot be converted to a sequence.. |
+PASS new Blob(0) threw exception TypeError: Failed to construct 'Blob': The provided value cannot be converted to a sequence.. |
+PASS new Blob(null) threw exception TypeError: Failed to construct 'Blob': The provided value cannot be converted to a sequence.. |
PASS (new Blob([])) instanceof window.Blob is true |
PASS (new Blob(['stringPrimitive'])) instanceof window.Blob is true |
PASS (new Blob([String('stringObject')])) instanceof window.Blob is true |
@@ -82,8 +82,8 @@ PASS new Blob([(new Float64Array(100)).buffer]).size is 800 |
PASS new Blob([(new Float64Array(100)).buffer, (new Int32Array(100)).buffer, (new Uint8Array(100)).buffer, (new DataView(new ArrayBuffer(100))).buffer]).size is 1400 |
PASS new Blob([new Blob([(new Int32Array(100)).buffer]), (new Uint8Array(100)).buffer, (new Float32Array(100)).buffer, (new DataView(new ArrayBuffer(100))).buffer]).size is 1000 |
PASS new Blob([new Uint8Array(new SharedArrayBuffer(4))]) threw exception TypeError: Failed to construct 'Blob': The provided ArrayBufferView value must not be shared.. |
-PASS new Blob({length: 0}).size is 0 |
-PASS new Blob({length: 1, 0: 'string'}).size is 6 |
+PASS new Blob(createIterable([{done:true}])).size is 0 |
+PASS new Blob(createIterable([{done:false, value:'string'},{done:true}])).size is 6 |
PASS OMICRON_WITH_OXIA.charCodeAt(0) is 0x1F79 |
PASS reader.result.charCodeAt(0) is 0x1F79 |
PASS CONTAINS_UNPAIRED_SURROGATES.charCodeAt(3) is 0xDC00 |