| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 | 2 |
| 3 <!-- READ BEFORE UPDATING: | 3 <!-- READ BEFORE UPDATING: |
| 4 If this test is updated make sure to increment the "revision" value of the | 4 If this test is updated make sure to increment the "revision" value of the |
| 5 associated test in content/test/gpu/page_sets/pixel_tests.py. This will ensure | 5 associated test in content/test/gpu/page_sets/pixel_tests.py. This will ensure |
| 6 that the baseline images are regenerated on the next run. | 6 that the baseline images are regenerated on the next run. |
| 7 --> | 7 --> |
| 8 | 8 |
| 9 <html> | 9 <html> |
| 10 <head> | 10 <head> |
| 11 <title>VP9 Video test</title> | 11 <title>VP9 Video test</title> |
| 12 <style type="text/css"> | 12 <style type="text/css"> |
| 13 .nomargin { | 13 .nomargin { |
| 14 margin: 0px auto; | 14 margin: 0px auto; |
| 15 } | 15 } |
| 16 </style> | 16 </style> |
| 17 <script> | 17 <script> |
| 18 var g_swapsBeforeAck = 15; | 18 var g_swapsBeforeAck = 15; |
| 19 var video; | 19 var video; |
| 20 | 20 |
| 21 function main() | 21 function main() |
| 22 { | 22 { |
| 23 video = document.getElementById("video"); | 23 video = document.getElementById("video"); |
| 24 video.addEventListener('canplaythrough', waitForFinish, true); | 24 if (video.readyState >= 4) { |
| 25 waitForFinish(); |
| 26 } else { |
| 27 video.addEventListener('canplaythrough', waitForFinish, true); |
| 28 } |
| 25 } | 29 } |
| 26 | 30 |
| 27 function waitForFinish() | 31 function waitForFinish() |
| 28 { | 32 { |
| 33 console.log("readyState" + video.readyState); |
| 29 if (g_swapsBeforeAck == 0) { | 34 if (g_swapsBeforeAck == 0) { |
| 30 domAutomationController.setAutomationId(1); | 35 domAutomationController.setAutomationId(1); |
| 31 domAutomationController.send("SUCCESS"); | 36 domAutomationController.send("SUCCESS"); |
| 32 } else { | 37 } else { |
| 33 g_swapsBeforeAck--; | 38 g_swapsBeforeAck--; |
| 34 window.requestAnimationFrame(waitForFinish); | 39 window.requestAnimationFrame(waitForFinish); |
| 35 } | 40 } |
| 36 } | 41 } |
| 37 </script> | 42 </script> |
| 38 </head> | 43 </head> |
| 39 <body onload="main()"> | 44 <body onload="main()"> |
| 40 <div id="container" style="position:absolute; top:0px; left:0px"> | 45 <div id="container" style="position:absolute; top:0px; left:0px"> |
| 41 <video class="nomargin" id="video"> | 46 <video class="nomargin" id="video"> |
| 42 <source src="/media/test/data/bear-vp9.webm" type="video/webm"> | 47 <source src="/media/test/data/bear-vp9.webm" type="video/webm"> |
| 43 </video> | 48 </video> |
| 44 </div> | 49 </div> |
| 45 </body> | 50 </body> |
| 46 </html> | 51 </html> |
| OLD | NEW |