| OLD | NEW |
| 1 Test the Blob constructor. | 1 Test the Blob constructor. |
| 2 | 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 4 |
| 5 | 5 |
| 6 PASS (new Blob()) instanceof window.Blob is true | 6 PASS (new Blob()) instanceof window.Blob is true |
| 7 PASS (new Blob(undefined)) instanceof window.Blob is true | 7 PASS (new Blob(undefined)) instanceof window.Blob is true |
| 8 PASS (new Blob([])) instanceof window.Blob is true | 8 PASS (new Blob([])) instanceof window.Blob is true |
| 9 PASS (new Blob(['hello'])) instanceof window.Blob is true | 9 PASS (new Blob(['hello'])) instanceof window.Blob is true |
| 10 PASS (new Blob(['hello'], {})) instanceof window.Blob is true | 10 PASS (new Blob(['hello'], {})) instanceof window.Blob is true |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 PASS OMICRON_WITH_OXIA.charCodeAt(0) is 0x1F79 | 87 PASS OMICRON_WITH_OXIA.charCodeAt(0) is 0x1F79 |
| 88 PASS reader.result.charCodeAt(0) is 0x1F79 | 88 PASS reader.result.charCodeAt(0) is 0x1F79 |
| 89 PASS CONTAINS_UNPAIRED_SURROGATES.charCodeAt(3) is 0xDC00 | 89 PASS CONTAINS_UNPAIRED_SURROGATES.charCodeAt(3) is 0xDC00 |
| 90 PASS CONTAINS_UNPAIRED_SURROGATES.charCodeAt(7) is 0xD800 | 90 PASS CONTAINS_UNPAIRED_SURROGATES.charCodeAt(7) is 0xD800 |
| 91 PASS reader.result.charCodeAt(3) is 0xFFFD | 91 PASS reader.result.charCodeAt(3) is 0xFFFD |
| 92 PASS reader.result.charCodeAt(7) is 0xFFFD | 92 PASS reader.result.charCodeAt(7) is 0xFFFD |
| 93 PASS successfullyParsed is true | 93 PASS successfullyParsed is true |
| 94 | 94 |
| 95 TEST COMPLETE | 95 TEST COMPLETE |
| 96 | 96 |
| OLD | NEW |