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

Side by Side Diff: javatests/org/chromium/distiller/webdocument/ULStartTest.java

Issue 1230583006: Fix for keeping lists structure (Closed) Base URL: https://github.com/chromium/dom-distiller.git@master
Patch Set: Using a new approach to keep list structure. Created 5 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 package org.chromium.distiller.webdocument;
2
3 import org.chromium.distiller.DomDistillerJsTestCase;
4
5 public class ULStartTest extends DomDistillerJsTestCase {
6
7 public void testGenerateOutput() {
8 ULStart ulStart = new ULStart();
9 String got = ulStart.generateOutput(false);
10 String want = "<ul>";
11
12 assertEquals(want, got);
13 }
14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698