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

Unified Diff: javatests/org/chromium/distiller/DomUtilTest.java

Issue 1507373003: Clean up attributes of image elements (Closed) Base URL: git@github.com:chromium/dom-distiller.git@master
Patch Set: Created 5 years 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: javatests/org/chromium/distiller/DomUtilTest.java
diff --git a/javatests/org/chromium/distiller/DomUtilTest.java b/javatests/org/chromium/distiller/DomUtilTest.java
index a636a5e181f8e99e66ba9ff21716f351d42758b9..156422d1ed08e8e6a0c6a66aa38f169cc1418722 100644
--- a/javatests/org/chromium/distiller/DomUtilTest.java
+++ b/javatests/org/chromium/distiller/DomUtilTest.java
@@ -248,6 +248,7 @@ public class DomUtilTest extends DomDistillerJsTestCase {
"<html><head><base href=\"http://example.com/\"></head><body>" +
"<a href=\"link\"></a>" +
"<img src=\"image\" srcset=\"image200 200w, image400 400w\">" +
+ "<img src=\"image2\">" +
"<video src=\"video\" poster=\"poster\">" +
"<source src=\"source\">" +
"<track src=\"track\"></track>" +
@@ -258,6 +259,7 @@ public class DomUtilTest extends DomDistillerJsTestCase {
"<a href=\"http://example.com/link\"></a>" +
"<img src=\"http://example.com/image\" " +
"srcset=\"http://example.com/image200 200w, http://example.com/image400 400w\">" +
+ "<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>" +

Powered by Google App Engine
This is Rietveld 408576698