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

Unified Diff: javatests/org/chromium/distiller/webdocument/WebVideoTest.java

Issue 1971443005: <track> should not have end tags (Closed) Base URL: git@github.com:chromium/dom-distiller.git@master
Patch Set: Created 4 years, 7 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 | « javatests/org/chromium/distiller/DomUtilTest.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: javatests/org/chromium/distiller/webdocument/WebVideoTest.java
diff --git a/javatests/org/chromium/distiller/webdocument/WebVideoTest.java b/javatests/org/chromium/distiller/webdocument/WebVideoTest.java
index 40d936c40dd53407abc1ab85e8a5419eceff49a9..e8d0907ef9884ed0f2556e5ea308867746603750 100644
--- a/javatests/org/chromium/distiller/webdocument/WebVideoTest.java
+++ b/javatests/org/chromium/distiller/webdocument/WebVideoTest.java
@@ -27,7 +27,7 @@ public class WebVideoTest extends DomDistillerJsTestCase {
String want = "<video>" +
"<source src=\"http://example.com/foo.ogg\">" +
- "<track src=\"http://example.com/foo.vtt\"></track>" +
+ "<track src=\"http://example.com/foo.vtt\">" +
"</video>";
WebVideo webVideo = new WebVideo(video, 400, 300);
@@ -53,7 +53,7 @@ public class WebVideoTest extends DomDistillerJsTestCase {
String want = "<video>" +
"<source src=\"http://example.com/foo.ogg\">" +
- "<track src=\"http://example.com/foo.vtt\"></track>" +
+ "<track src=\"http://example.com/foo.vtt\">" +
"</video>";
WebVideo webVideo = new WebVideo(video, 400, 300);
« no previous file with comments | « javatests/org/chromium/distiller/DomUtilTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698