OLD | NEW |
| 1 CONSOLE ERROR: line 116: Uncaught (in promise) AbortError: The play() request wa
s interrupted by a new load request. |
| 2 CONSOLE ERROR: line 116: Uncaught (in promise) AbortError: The play() request wa
s interrupted by a new load request. |
1 Test to see if media loads automatically when 'preload' is specified. | 3 Test to see if media loads automatically when 'preload' is specified. |
2 | 4 |
3 | 5 |
4 Will load with 'preload=none', should not buffer automatically until 'play()' is
called | 6 Will load with 'preload=none', should not buffer automatically until 'play()' is
called |
5 RUN(video.setAttribute('preload', 'none')) | 7 RUN(video.setAttribute('preload', 'none')) |
6 RUN(video.removeAttribute('autoplay')) | 8 RUN(video.removeAttribute('autoplay')) |
7 EVENT(loadstart) | 9 EVENT(loadstart) |
8 did not buffer automatically OK | 10 did not buffer automatically OK |
9 RUN(video.play()) | 11 RUN(video.play()) |
10 EVENT(play) | 12 EVENT(play) |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 Will load with 'preload=none', should buffer automatically because of 'autoplay' | 49 Will load with 'preload=none', should buffer automatically because of 'autoplay' |
48 RUN(video.setAttribute('preload', 'none')) | 50 RUN(video.setAttribute('preload', 'none')) |
49 RUN(video.setAttribute('autoplay', 'true')) | 51 RUN(video.setAttribute('autoplay', 'true')) |
50 RUN(video.load()) | 52 RUN(video.load()) |
51 EVENT(loadstart) | 53 EVENT(loadstart) |
52 EVENT(loadedmetadata) | 54 EVENT(loadedmetadata) |
53 buffered automatically OK | 55 buffered automatically OK |
54 | 56 |
55 END OF TEST | 57 END OF TEST |
56 | 58 |
OLD | NEW |