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

Unified Diff: javatests/org/chromium/distiller/DomUtilTest.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 | « .travis.yml ('k') | javatests/org/chromium/distiller/webdocument/WebVideoTest.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: javatests/org/chromium/distiller/DomUtilTest.java
diff --git a/javatests/org/chromium/distiller/DomUtilTest.java b/javatests/org/chromium/distiller/DomUtilTest.java
index 870600ecb2d519d2a939cb766034d9da5d4d7300..2336b36e53689841d37b0fb6b6d956a2be6f20e8 100644
--- a/javatests/org/chromium/distiller/DomUtilTest.java
+++ b/javatests/org/chromium/distiller/DomUtilTest.java
@@ -249,7 +249,7 @@ public class DomUtilTest extends DomDistillerJsTestCase {
"<img src=\"image2\">" +
"<video src=\"video\" poster=\"poster\">" +
"<source src=\"source\">" +
- "<track src=\"track\"></track>" +
+ "<track src=\"track\">" +
"</video>";
final String expected =
@@ -259,7 +259,7 @@ public class DomUtilTest extends DomDistillerJsTestCase {
"<img src=\"http://example.com/image2\">" +
"<video src=\"http://example.com/video\" poster=\"http://example.com/poster\">" +
"<source src=\"http://example.com/source\">" +
- "<track src=\"http://example.com/track\"></track>" +
+ "<track src=\"http://example.com/track\">" +
"</video>";
mHead.setInnerHTML("<base href=\"http://example.com/\">");
« no previous file with comments | « .travis.yml ('k') | javatests/org/chromium/distiller/webdocument/WebVideoTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698