Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Unified Diff: LayoutTests/media/video-durationchange-on-ended.html

Issue 1074633002: Adjust video-durationchange unit test for new behavior (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/media/video-durationchange-on-ended-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/media/video-durationchange-on-ended-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698