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

Unified Diff: third_party/WebKit/LayoutTests/media/track/track-add-remove-cue.html

Issue 2683633006: [WebVTT] Rename Middle to Center (Closed)
Patch Set: fix tests Created 3 years, 10 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
Index: third_party/WebKit/LayoutTests/media/track/track-add-remove-cue.html
diff --git a/third_party/WebKit/LayoutTests/media/track/track-add-remove-cue.html b/third_party/WebKit/LayoutTests/media/track/track-add-remove-cue.html
index c781ffa3e6945f5756e96504b380e917435c59a7..222bfb0ba71521e41e4188f1313cf3b1454bead1 100644
--- a/third_party/WebKit/LayoutTests/media/track/track-add-remove-cue.html
+++ b/third_party/WebKit/LayoutTests/media/track/track-add-remove-cue.html
@@ -29,7 +29,7 @@ async_test(function(t) {
assert_equals(textCue.line, "auto");
assert_equals(textCue.position, "auto");
assert_equals(textCue.size, 100);
- assert_equals(textCue.align, "middle");
+ assert_equals(textCue.align, "center");
// Remove the unadded track, make sure it throws correctly.
assert_throws("NotFoundError", function() { trackElement.track.removeCue(textCue); });
@@ -58,7 +58,7 @@ async_test(function(t) {
assert_equals(newCue.line, "auto");
assert_equals(newCue.position, "auto");
assert_equals(newCue.size, 100);
- assert_equals(newCue.align, "middle");
+ assert_equals(newCue.align, "center");
trackElement.track.removeCue(textCue);
assert_equals(textCue.track, null);
@@ -89,4 +89,4 @@ async_test(function(t) {
trackElement.default = true;
video.appendChild(trackElement);
});
-</script>
+</script>

Powered by Google App Engine
This is Rietveld 408576698