Changeset 175986 in webkit
- Timestamp:
- Nov 11, 2014, 4:09:51 PM (12 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
compositing/video/video-border-radius.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r175984 r175986 1 2014-11-11 Alexey Proskuryakov <ap@apple.com> 2 3 compositing/video/video-border-radius.html frequently times out on 10.8 4 5 Add an error even listener, to at hopefully get a proper failure when this happens. 6 7 * compositing/video/video-border-radius.html: 8 1 9 2014-11-11 Alexey Proskuryakov <ap@apple.com> 2 10 -
trunk/LayoutTests/compositing/video/video-border-radius.html
r175979 r175986 55 55 var count = totalCount; 56 56 document.addEventListener("canplaythrough", function () { 57 if (!--count) { 58 if (window.testRunner) 59 setTimeout(function() { 60 testRunner.notifyDone(); 61 }, totalCount * 150); 57 if (!--count && window.testRunner) { 58 setTimeout(function() { 59 testRunner.notifyDone(); 60 }, totalCount * 150); 62 61 } 62 }, true); 63 64 document.addEventListener("error", function (event) { 65 console.log("Video " + event.target.getAttribute("name") + " failed to load, error " + event.target.error.code); 66 if (window.testRunner) 67 testRunner.notifyDone(); 63 68 }, true); 64 69 … … 71 76 72 77 <div class="wrapper"> 73 <video ></video>78 <video name="1"></video> 74 79 <div class="obscurer"></div> 75 80 </div> 76 81 77 82 <div class="wrapper non-uniform" style="top: 100px;"> 78 <video ></video>83 <video name="2"></video> 79 84 <div class="obscurer"></div> 80 85 </div>
Note:
See TracChangeset
for help on using the changeset viewer.