Summary

Harness status: OK

Found 4 tests

Details

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