OLD | NEW |
1 EXPECTED (video.buffered.length == '0') OK | 1 EXPECTED (video.buffered.length == '0') OK |
2 TEST(video.buffered.start(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exe
cute 'start' on 'TimeRanges': The index provided (4294967295) is not less than t
he object's length (0).) OK | 2 TEST(video.buffered.start(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exe
cute 'start' on 'TimeRanges': The index provided (4294967295) is greater than th
e maximum bound (0).) OK |
3 TEST(video.buffered.end(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execu
te 'end' on 'TimeRanges': The index provided (4294967295) is not less than the o
bject's length (0).) OK | 3 TEST(video.buffered.end(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execu
te 'end' on 'TimeRanges': The index provided (4294967295) is greater than the ma
ximum bound (0).) OK |
4 TEST(video.buffered.start(0)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exec
ute 'start' on 'TimeRanges': The index provided (0) is not less than the object'
s length (0).) OK | 4 TEST(video.buffered.start(0)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exec
ute 'start' on 'TimeRanges': The index provided (0) is greater than or equal to
the maximum bound (0).) OK |
5 TEST(video.buffered.end(0)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execut
e 'end' on 'TimeRanges': The index provided (0) is not less than the object's le
ngth (0).) OK | 5 TEST(video.buffered.end(0)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execut
e 'end' on 'TimeRanges': The index provided (0) is greater than or equal to the
maximum bound (0).) OK |
6 EVENT(canplaythrough) | 6 EVENT(canplaythrough) |
7 EXPECTED (video.buffered.length == '1') OK | 7 EXPECTED (video.buffered.length == '1') OK |
8 EXPECTED (video.buffered.start(0) == '0') OK | 8 EXPECTED (video.buffered.start(0) == '0') OK |
9 EXPECTED (video.buffered.end(0) > '0') OK | 9 EXPECTED (video.buffered.end(0) > '0') OK |
10 TEST(video.buffered.start(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exe
cute 'start' on 'TimeRanges': The index provided (4294967295) is not less than t
he object's length (1).) OK | 10 TEST(video.buffered.start(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exe
cute 'start' on 'TimeRanges': The index provided (4294967295) is greater than th
e maximum bound (1).) OK |
11 TEST(video.buffered.end(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execu
te 'end' on 'TimeRanges': The index provided (4294967295) is not less than the o
bject's length (1).) OK | 11 TEST(video.buffered.end(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execu
te 'end' on 'TimeRanges': The index provided (4294967295) is greater than the ma
ximum bound (1).) OK |
12 TEST(video.buffered.start(1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exec
ute 'start' on 'TimeRanges': The index provided (1) is not less than the object'
s length (1).) OK | 12 TEST(video.buffered.start(1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exec
ute 'start' on 'TimeRanges': The index provided (1) is greater than or equal to
the maximum bound (1).) OK |
13 TEST(video.buffered.end(1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execut
e 'end' on 'TimeRanges': The index provided (1) is not less than the object's le
ngth (1).) OK | 13 TEST(video.buffered.end(1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execut
e 'end' on 'TimeRanges': The index provided (1) is greater than or equal to the
maximum bound (1).) OK |
14 END OF TEST | 14 END OF TEST |
15 | 15 |
OLD | NEW |