1 Test to see if media loads automatically when 'preload' is specified.
4 Will load with 'preload=none', should not buffer automatically until 'play()' is called
5 RUN(video.setAttribute('preload', 'none'))
6 RUN(video.removeAttribute('autoplay'))
8 did not buffer automatically OK
12 buffered automatically OK
14 Will load with 'preload=none', should buffer automatically because 'load()' is called
15 RUN(video.setAttribute('preload', 'none'))
16 RUN(video.removeAttribute('autoplay'))
20 buffered automatically OK
22 Will load with 'preload=none', should buffer automatically because 'play()' is called
23 RUN(video.setAttribute('preload', 'none'))
24 RUN(video.removeAttribute('autoplay'))
29 buffered automatically OK
31 Will load with 'preload=metadata', should buffer automatically
32 RUN(video.setAttribute('preload', 'metadata'))
33 RUN(video.removeAttribute('autoplay'))
37 buffered automatically OK
39 Will load with 'preload=auto', should buffer automatically
40 RUN(video.setAttribute('preload', 'auto'))
41 RUN(video.removeAttribute('autoplay'))
45 buffered automatically OK
47 Will load with 'preload=none', should buffer automatically because of 'autoplay'
48 RUN(video.setAttribute('preload', 'none'))
49 RUN(video.setAttribute('autoplay', 'true'))
53 buffered automatically OK