Chromium Code Reviews| Index: LayoutTests/media/video-durationchange-on-ended.html |
| diff --git a/LayoutTests/media/video-durationchange-on-ended.html b/LayoutTests/media/video-durationchange-on-ended.html |
| index f9a0d86a4561106b77c61221cf426adee50e5f61..089141cbf1759debffd249926a471348ae38d0fc 100644 |
| --- a/LayoutTests/media/video-durationchange-on-ended.html |
| +++ b/LayoutTests/media/video-durationchange-on-ended.html |
| @@ -19,9 +19,10 @@ |
| }); |
| waitForEventAndEnd('ended', function() { |
| + consoleWrite("initialReportedDuration=" + initialReportedDuration + " video.duration=" + video.duration); |
| // Verify that the actual duration is less than |
| // the initial reported duration |
| - testExpected("video.duration < initialReportedDuration", true); |
| + testExpected("video.duration <= initialReportedDuration", true); |
|
wolenetz
2015/04/09 17:29:06
Though I understand how this causes the test to pa
servolk
2015/04/29 21:31:01
Sorry for the delay on this. Yes, your understandi
|
| }); |
| </script> |
| </body> |