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

Unified Diff: java/org/chromium/distiller/webdocument/WebFigure.java

Issue 2020403002: Add support for figure element (Closed) Base URL: https://github.com/chromium/dom-distiller.git@master
Patch Set: comments addressed Created 4 years, 6 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
Index: java/org/chromium/distiller/webdocument/WebFigure.java
diff --git a/java/org/chromium/distiller/webdocument/WebFigure.java b/java/org/chromium/distiller/webdocument/WebFigure.java
new file mode 100644
index 0000000000000000000000000000000000000000..6214034619dc2dcc813107fcc58ff9976f39bcdf
--- /dev/null
+++ b/java/org/chromium/distiller/webdocument/WebFigure.java
@@ -0,0 +1,30 @@
+package org.chromium.distiller.webdocument;
+
+import com.google.gwt.dom.client.Document;
+import com.google.gwt.dom.client.Element;
+import org.chromium.distiller.DomUtil;
+
+public class WebFigure extends WebImage {
+
+ private String figCaption;
+
+ public WebFigure(Element e, int w, int h, String src, String caption) {
+ super(e, w, h, src);
+ figCaption = caption;
+ }
+
+ @Override
+ public String generateOutput(boolean textOnly) {
+ if (textOnly) return figCaption;
wychen 2016/06/20 18:54:20 Now this doesn't work with these escaping.
+
+ Element figure = Document.get().createElement("FIGURE");
+ figure.setInnerHTML(super.generateOutput(false));
+ if (!figCaption.isEmpty()) {
+ Element caption = Document.get().createElement("FIGCAPTION");
+ caption.setInnerHTML(figCaption);
+ figure.appendChild(caption);
+ }
+ DomUtil.makeAllLinksAbsolute(figure);
+ return figure.getString();
+ }
+}
« no previous file with comments | « java/org/chromium/distiller/extractors/embeds/ImageExtractor.java ('k') | javatests/org/chromium/distiller/DomUtilTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698