Pass | slice start is negative, relativeStart will be max((size + start), 0) | Asserts runPass | assert_equals(1, 1, "Blob slice size")
at Test.<anonymous> ( /FileAPI/blob/Blob-slice-overflow.any.js:13:3) |
|
Pass | slice start is greater than blob size, relativeStart will be min(start, size) | Asserts runPass | assert_equals(0, 0, "Blob slice size")
at Test.<anonymous> ( /FileAPI/blob/Blob-slice-overflow.any.js:19:3) |
|
Pass | slice end is negative, relativeEnd will be max((size + end), 0) | Asserts runPass | assert_equals(1, 1, "Blob slice size")
at Test.<anonymous> ( /FileAPI/blob/Blob-slice-overflow.any.js:25:3) |
|
Pass | slice end is greater than blob size, relativeEnd will be min(end, size) | Asserts runPass | assert_equals(2, 2, "Blob slice size")
at Test.<anonymous> ( /FileAPI/blob/Blob-slice-overflow.any.js:31:3) |
|