| Index: third_party/WebKit/LayoutTests/compositing/video/video-reflection.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/video/video-reflection.html b/third_party/WebKit/LayoutTests/compositing/video/video-reflection.html
|
| index 6e7ab3efd565f3f2f0beff4571274c8ef736909b..2e07e350771a483c5d4cbf05056d1b4f7d157eb5 100644
|
| --- a/third_party/WebKit/LayoutTests/compositing/video/video-reflection.html
|
| +++ b/third_party/WebKit/LayoutTests/compositing/video/video-reflection.html
|
| @@ -6,6 +6,7 @@
|
| (Please avoid writing new tests using video-test.js) -->
|
| <script src="../../media/video-test.js"></script>
|
| <script type="text/javascript">
|
| + var testedOnce = false;
|
| if (window.testRunner) {
|
| window.testRunner.dumpAsTextWithPixelResults();
|
| window.testRunner.waitUntilDone();
|
| @@ -21,10 +22,14 @@
|
| video.currentTime = 1;
|
| }
|
| function seeked(e) {
|
| - testExpected('video.currentTime', 1);
|
| + if (!testedOnce) {
|
| + testExpected('video.currentTime', 1);
|
|
|
| - if (window.testRunner)
|
| - setTimeout(function() { testRunner.notifyDone(); }, 150);
|
| + if (window.testRunner)
|
| + setTimeout(function() { testRunner.notifyDone(); }, 150);
|
| +
|
| + testedOnce = true;
|
| + }
|
| }
|
| </script>
|
| <style>
|
|
|