| Index: javatests/org/chromium/distiller/DomUtilTest.java
|
| diff --git a/javatests/org/chromium/distiller/DomUtilTest.java b/javatests/org/chromium/distiller/DomUtilTest.java
|
| index d8d9f4b58a5e17ed6c0eb5980dc0ddaaa851b727..5038442cac2b82830f567b1dee8136d38cf89298 100644
|
| --- a/javatests/org/chromium/distiller/DomUtilTest.java
|
| +++ b/javatests/org/chromium/distiller/DomUtilTest.java
|
| @@ -504,6 +504,16 @@ public class DomUtilTest extends DomDistillerJsTestCase {
|
| assertEquals(expected, result.getString());
|
| }
|
|
|
| + public void testOnlyProcessSchemaOrgPostal() {
|
| + final String htmlArticle =
|
| + "<h1></h1>" +
|
| + "<div itemscope itemtype=\"http://schema.org/PostalAddress\">" +
|
| + "</div>";
|
| +
|
| + Element result = getArticleElement(htmlArticle);
|
| + assertNull(result);
|
| + }
|
| +
|
| public void testOnlyProcessSchemaOrgArticleNested() {
|
| final String htmlArticle =
|
| "<h1></h1>" +
|
|
|