1
0
mirror of https://github.com/videojs/video.js.git synced 2025-02-02 11:34:50 +02:00

Small fix to an IE9 broken test, introduced in #2513

This commit is contained in:
heff 2015-08-31 17:17:26 -07:00
parent b40865ad2b
commit f492450a01

View File

@ -92,8 +92,9 @@ test('should set element attributes from object', function(){
test('should read tag attributes from elements, including HTML5 in all browsers', function(){
// Creating the source/track tags outside of the video tag prevents log errors
let tags = `
<video id="vid1" controls autoplay loop muted preload="none" src="http://google.com" poster="http://www2.videojs.com/img/video-js-html5-video-player.png" data-test="asdf" data-empty-string=""></video>
<video id="vid1" controls autoplay loop muted preload="none" src="http://google.com" poster="http://www2.videojs.com/img/video-js-html5-video-player.png" data-test="asdf" data-empty-string="">
<source id="source" src="http://google.com" type="video/mp4" media="fdsa" title="test" >
</video>
<track id="track" default src="http://google.com" kind="captions" srclang="en" label="testlabel" title="test" >
`;