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

Unified Diff: LayoutTests/media/track/text-track-cue-exceptions.html

Issue 140563002: Use the VTTCue constructor instead of TextTrackCue in test (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/media/track/text-track-cue-exceptions.html
diff --git a/LayoutTests/media/track/text-track-cue-exceptions.html b/LayoutTests/media/track/text-track-cue-exceptions.html
index 66cf92aa00efe1e6239760a491aa67a7ff55f85b..37546c0249ef7c34e3e89631e2c3c76ba9f50e43 100644
--- a/LayoutTests/media/track/text-track-cue-exceptions.html
+++ b/LayoutTests/media/track/text-track-cue-exceptions.html
@@ -7,7 +7,7 @@
<script>
description("Verify that TextTrackCue exceptions are properly messaged to developers.");
- var cue = new TextTrackCue(0, 0, "Test.");
+ var cue = new VTTCue(0, 0, "Test.");
function testInfinityAndNaN(property) {
shouldThrow("cue." + property + " = Number.NaN;");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698