| OLD | NEW |
| 1 This is a testharness.js-based test. | 1 This is a testharness.js-based test. |
| 2 PASS Blob interface object | 2 PASS Blob interface object |
| 3 PASS Blob constructor with no arguments | 3 PASS Blob constructor with no arguments |
| 4 PASS Blob constructor with no arguments, without 'new' | 4 PASS Blob constructor with no arguments, without 'new' |
| 5 PASS Blob constructor without brackets | 5 PASS Blob constructor without brackets |
| 6 PASS Blob constructor with undefined as first argument | 6 FAIL Blob constructor with undefined as first argument Failed to construct 'Blob
': The 1st argument is neither an array, nor does it have indexed properties. |
| 7 FAIL Passing non-objects, Dates and RegExps for blobParts should throw a TypeErr
or. assert_throws: Should throw for argument object "[object Object]". function
"function () { | 7 FAIL Passing non-objects, Dates and RegExps for blobParts should throw a TypeErr
or. assert_throws: Should throw for argument object "[object Object]". function
"function () { |
| 8 new Blob(arg); | 8 new Blob(arg); |
| 9 }" did not throw | 9 }" did not throw |
| 10 FAIL A plain object with @@iterator should be treated as a sequence for the blob
Parts argument. Failed to construct 'Blob': The 1st argument is neither an array
, nor does it have indexed properties. | 10 FAIL A plain object with @@iterator should be treated as a sequence for the blob
Parts argument. Failed to construct 'Blob': The 1st argument is neither an array
, nor does it have indexed properties. |
| 11 PASS A plain object with @@iterator and a length property should be treated as a
sequence for the blobParts argument. | 11 PASS A plain object with @@iterator and a length property should be treated as a
sequence for the blobParts argument. |
| 12 PASS A String object should be treated as a sequence for the blobParts argument.
| 12 PASS A String object should be treated as a sequence for the blobParts argument.
|
| 13 PASS A Uint8Array object should be treated as a sequence for the blobParts argum
ent. | 13 PASS A Uint8Array object should be treated as a sequence for the blobParts argum
ent. |
| 14 PASS The length getter should be invoked and any exceptions should be propagated
. | 14 PASS The length getter should be invoked and any exceptions should be propagated
. |
| 15 PASS A platform object that supports indexed properties should be treated as a s
equence for the blobParts argument (overwritten 'length'.) | 15 PASS A platform object that supports indexed properties should be treated as a s
equence for the blobParts argument (overwritten 'length'.) |
| 16 PASS ToUint32 should be applied to the length and any exceptions should be propa
gated. | 16 PASS ToUint32 should be applied to the length and any exceptions should be propa
gated. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 PASS Blob with type "\timage/gif\t" | 57 PASS Blob with type "\timage/gif\t" |
| 58 PASS Blob with type "image/gif;" | 58 PASS Blob with type "image/gif;" |
| 59 FAIL Blob with type "İmage/gif" Failed to construct 'Blob': The 'type' property
must consist of ASCII characters. | 59 FAIL Blob with type "İmage/gif" Failed to construct 'Blob': The 'type' property
must consist of ASCII characters. |
| 60 FAIL Blob with type "ımage/gif" Failed to construct 'Blob': The 'type' property
must consist of ASCII characters. | 60 FAIL Blob with type "ımage/gif" Failed to construct 'Blob': The 'type' property
must consist of ASCII characters. |
| 61 PASS Blob with type "image/gif\0" | 61 PASS Blob with type "image/gif\0" |
| 62 PASS Blob with type "unknown/unknown" | 62 PASS Blob with type "unknown/unknown" |
| 63 PASS Blob with type "text/plain" | 63 PASS Blob with type "text/plain" |
| 64 PASS Blob with type "image/png" | 64 PASS Blob with type "image/png" |
| 65 Harness: the test ran to completion. | 65 Harness: the test ran to completion. |
| 66 | 66 |
| OLD | NEW |