|
1 | 1 |
|
2 |
| -PASS Blob interface object |
3 |
| -PASS Blob constructor with no arguments |
4 |
| -PASS Blob constructor with no arguments, without 'new' |
5 |
| -PASS Blob constructor without brackets |
6 |
| -PASS Blob constructor with undefined as first argument |
7 |
| -PASS Passing non-objects, Dates and RegExps for blobParts should throw a TypeError. |
8 |
| -PASS A plain object with @@iterator should be treated as a sequence for the blobParts argument. |
9 |
| -PASS A plain object with custom @@iterator should be treated as a sequence for the blobParts argument. |
10 |
| -PASS A plain object with @@iterator and a length property should be treated as a sequence for the blobParts argument. |
11 |
| -PASS A String object should be treated as a sequence for the blobParts argument. |
12 |
| -PASS A Uint8Array object should be treated as a sequence for the blobParts argument. |
13 |
| -PASS The length getter should be invoked and any exceptions should be propagated. |
14 |
| -PASS A platform object that supports indexed properties should be treated as a sequence for the blobParts argument (overwritten 'length'.) |
15 |
| -PASS ToUint32 should be applied to the length and any exceptions should be propagated. |
16 |
| -PASS Getters and value conversions should happen in order until an exception is thrown. |
17 |
| -PASS ToString should be called on elements of the blobParts array and any exceptions should be propagated. |
18 |
| -PASS Changes to the blobParts array should be reflected in the returned Blob (pop). |
19 |
| -PASS Changes to the blobParts array should be reflected in the returned Blob (unshift). |
20 |
| -PASS ToString should be called on elements of the blobParts array. |
21 |
| -PASS ArrayBuffer elements of the blobParts array should be supported. |
22 |
| -PASS Passing typed arrays as elements of the blobParts array should work. |
23 |
| -PASS Passing a Float64Array as element of the blobParts array should work. |
24 |
| -PASS Passing an platform object that supports indexed properties as the blobParts array should work (select). |
25 |
| -PASS Passing an platform object that supports indexed properties as the blobParts array should work (attributes). |
26 |
| -PASS Passing a FrozenArray as the blobParts array should work (FrozenArray<MessagePort>). |
27 |
| -PASS Array with two blobs |
28 |
| -PASS Array with two buffers |
29 |
| -PASS Array with two bufferviews |
30 |
| -PASS Array with mixed types |
31 |
| -PASS options properties should be accessed in lexicographic order. |
32 |
| -PASS Arguments should be evaluated from left to right. |
33 |
| -PASS Passing null (index 0) for options should use the defaults. |
34 |
| -PASS Passing null (index 0) for options should use the defaults (with newlines). |
35 |
| -PASS Passing undefined (index 1) for options should use the defaults. |
36 |
| -PASS Passing undefined (index 1) for options should use the defaults (with newlines). |
37 |
| -PASS Passing object "[object Object]" (index 2) for options should use the defaults. |
38 |
| -PASS Passing object "[object Object]" (index 2) for options should use the defaults (with newlines). |
39 |
| -PASS Passing object "[object Object]" (index 3) for options should use the defaults. |
40 |
| -PASS Passing object "[object Object]" (index 3) for options should use the defaults (with newlines). |
41 |
| -PASS Passing object "/regex/" (index 4) for options should use the defaults. |
42 |
| -PASS Passing object "/regex/" (index 4) for options should use the defaults (with newlines). |
43 |
| -PASS Passing function "function () {}" (index 5) for options should use the defaults. |
44 |
| -PASS Passing function "function () {}" (index 5) for options should use the defaults (with newlines). |
45 |
| -PASS Passing 123 for options should throw |
46 |
| -PASS Passing 123.4 for options should throw |
47 |
| -PASS Passing true for options should throw |
48 |
| -PASS Passing "abc" for options should throw |
49 |
| -PASS Blob with type "" |
50 |
| -PASS Blob with type "a" |
51 |
| -PASS Blob with type "A" |
52 |
| -PASS Blob with type "text/html" |
53 |
| -PASS Blob with type "TEXT/HTML" |
54 |
| -PASS Blob with type "text/plain;charset=utf-8" |
55 |
| -PASS Blob with type "å" |
56 |
| -PASS Blob with type "𐑾" |
57 |
| -PASS Blob with type " image/gif " |
58 |
| -PASS Blob with type "\timage/gif\t" |
59 |
| -PASS Blob with type "image/gif;" |
60 |
| -PASS Blob with type "İmage/gif" |
61 |
| -PASS Blob with type "ımage/gif" |
62 |
| -PASS Blob with type "image/gif\0" |
63 |
| -PASS Blob with type "unknown/unknown" |
64 |
| -PASS Blob with type "text/plain" |
65 |
| -PASS Blob with type "image/png" |
| 2 | +PASS Blob interface object |
| 3 | +PASS Blob constructor with no arguments |
| 4 | +PASS Blob constructor with no arguments, without 'new' |
| 5 | +PASS Blob constructor without brackets |
| 6 | +PASS Blob constructor with undefined as first argument |
| 7 | +PASS Passing non-objects, Dates and RegExps for blobParts should throw a TypeError. |
| 8 | +PASS A plain object with @@iterator should be treated as a sequence for the blobParts argument. |
| 9 | +PASS A plain object with custom @@iterator should be treated as a sequence for the blobParts argument. |
| 10 | +PASS A plain object with @@iterator and a length property should be treated as a sequence for the blobParts argument. |
| 11 | +PASS A String object should be treated as a sequence for the blobParts argument. |
| 12 | +PASS A Uint8Array object should be treated as a sequence for the blobParts argument. |
| 13 | +PASS The length getter should be invoked and any exceptions should be propagated. |
| 14 | +PASS A platform object that supports indexed properties should be treated as a sequence for the blobParts argument (overwritten 'length'.) |
| 15 | +PASS ToUint32 should be applied to the length and any exceptions should be propagated. |
| 16 | +PASS Getters and value conversions should happen in order until an exception is thrown. |
| 17 | +PASS ToString should be called on elements of the blobParts array and any exceptions should be propagated. |
| 18 | +PASS Changes to the blobParts array should be reflected in the returned Blob (pop). |
| 19 | +PASS Changes to the blobParts array should be reflected in the returned Blob (unshift). |
| 20 | +PASS ToString should be called on elements of the blobParts array. |
| 21 | +PASS ArrayBuffer elements of the blobParts array should be supported. |
| 22 | +PASS Passing typed arrays as elements of the blobParts array should work. |
| 23 | +PASS Passing a Float64Array as element of the blobParts array should work. |
| 24 | +PASS Passing an platform object that supports indexed properties as the blobParts array should work (select). |
| 25 | +PASS Passing an platform object that supports indexed properties as the blobParts array should work (attributes). |
| 26 | +PASS Passing a FrozenArray as the blobParts array should work (FrozenArray<MessagePort>). |
| 27 | +PASS Array with two blobs |
| 28 | +PASS Array with two buffers |
| 29 | +PASS Array with two bufferviews |
| 30 | +PASS Array with mixed types |
| 31 | +PASS options properties should be accessed in lexicographic order. |
| 32 | +PASS Arguments should be evaluated from left to right. |
| 33 | +PASS Passing null (index 0) for options should use the defaults. |
| 34 | +PASS Passing null (index 0) for options should use the defaults (with newlines). |
| 35 | +PASS Passing undefined (index 1) for options should use the defaults. |
| 36 | +PASS Passing undefined (index 1) for options should use the defaults (with newlines). |
| 37 | +PASS Passing object "[object Object]" (index 2) for options should use the defaults. |
| 38 | +PASS Passing object "[object Object]" (index 2) for options should use the defaults (with newlines). |
| 39 | +PASS Passing object "[object Object]" (index 3) for options should use the defaults. |
| 40 | +PASS Passing object "[object Object]" (index 3) for options should use the defaults (with newlines). |
| 41 | +PASS Passing object "/regex/" (index 4) for options should use the defaults. |
| 42 | +PASS Passing object "/regex/" (index 4) for options should use the defaults (with newlines). |
| 43 | +PASS Passing function "function () {}" (index 5) for options should use the defaults. |
| 44 | +PASS Passing function "function () {}" (index 5) for options should use the defaults (with newlines). |
| 45 | +PASS Passing 123 for options should throw |
| 46 | +PASS Passing 123.4 for options should throw |
| 47 | +PASS Passing true for options should throw |
| 48 | +PASS Passing "abc" for options should throw |
| 49 | +PASS Blob with type "" |
| 50 | +PASS Blob with type "a" |
| 51 | +PASS Blob with type "A" |
| 52 | +PASS Blob with type "text/html" |
| 53 | +PASS Blob with type "TEXT/HTML" |
| 54 | +PASS Blob with type "text/plain;charset=utf-8" |
| 55 | +PASS Blob with type "å" |
| 56 | +PASS Blob with type "𐑾" |
| 57 | +PASS Blob with type " image/gif " |
| 58 | +PASS Blob with type "\timage/gif\t" |
| 59 | +PASS Blob with type "image/gif;" |
| 60 | +PASS Blob with type "İmage/gif" |
| 61 | +PASS Blob with type "ımage/gif" |
| 62 | +PASS Blob with type "image/gif\0" |
| 63 | +PASS Blob with type "unknown/unknown" |
| 64 | +PASS Blob with type "text/plain" |
| 65 | +PASS Blob with type "image/png" |
66 | 66 |
|
0 commit comments