| Index: java/org/chromium/distiller/webdocument/ElementAction.java
|
| diff --git a/java/org/chromium/distiller/webdocument/ElementAction.java b/java/org/chromium/distiller/webdocument/ElementAction.java
|
| index 1dbc88baf240b81966e47218812187858c63a1fd..d85f122ceff1a5e6972d694f0e4f754da262c224 100644
|
| --- a/java/org/chromium/distiller/webdocument/ElementAction.java
|
| +++ b/java/org/chromium/distiller/webdocument/ElementAction.java
|
| @@ -17,6 +17,7 @@ public class ElementAction {
|
| public boolean changesTagLevel = false;
|
| public boolean flush = false;
|
| public boolean isAnchor = false;
|
| + public boolean isList = false;
|
| public JsArrayString labels = JavaScriptObject.createArray().<JsArrayString>cast();
|
|
|
| private static final RegExp REG_COMMENT = RegExp.compile("\\bcomments?\\b");
|
| @@ -91,6 +92,10 @@ public class ElementAction {
|
| action.isAnchor = true;
|
| }
|
| break;
|
| + case "OL":
|
| + case "UL":
|
| + action.isList = true;
|
| + break;
|
| }
|
| }
|
| return action;
|
|
|