|
| 1 | +/* |
| 2 | + * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +import java.awt.Dimension; |
| 25 | +import java.awt.Graphics; |
| 26 | +import java.awt.image.BufferedImage; |
| 27 | +import java.io.File; |
| 28 | +import java.io.IOException; |
| 29 | + |
| 30 | +import javax.imageio.ImageIO; |
| 31 | +import javax.swing.JEditorPane; |
| 32 | +import javax.swing.text.View; |
| 33 | +import javax.swing.text.html.CSS; |
| 34 | + |
| 35 | +/* |
| 36 | + * @test |
| 37 | + * @bug 8323801 8326734 |
| 38 | + * @summary Tests different combination of 'underline' and 'line-through'; |
| 39 | + * the text should render with both 'underline' and 'line-through'. |
| 40 | + * @run main HTMLTextDecoration |
| 41 | + */ |
| 42 | +public final class HTMLTextDecoration { |
| 43 | + private static final String HTML = """ |
| 44 | + <!DOCTYPE html> |
| 45 | + <html lang="en"> |
| 46 | + <head> |
| 47 | + <meta charset="UTF-8"> |
| 48 | + <title>underline + line-through text</title> |
| 49 | + <style> |
| 50 | + .underline { text-decoration: underline } |
| 51 | + .lineThrough { text-decoration: line-through } |
| 52 | + </style> |
| 53 | + </head> |
| 54 | + <body> |
| 55 | + <p><u><span style='text-decoration: line-through'>underline + line-through?</span></u></p> |
| 56 | + <p><s><span style='text-decoration: underline'>underline + line-through?</span></s></p> |
| 57 | + <p><strike><span style='text-decoration: underline'>underline + line-through?</span></strike></p> |
| 58 | +
|
| 59 | + <p><span style='text-decoration: line-through'><u>underline + line-through?</u></span></p> |
| 60 | + <p><span style='text-decoration: underline'><s>underline + line-through?</s></span></p> |
| 61 | + <p><span style='text-decoration: underline'><strike>underline + line-through?</strike></span></p> |
| 62 | +
|
| 63 | + <p><span style='text-decoration: line-through'><span style='text-decoration: underline'>underline + line-through?</span></span></p> |
| 64 | + <p><span style='text-decoration: underline'><span style='text-decoration: line-through'>underline + line-through?</span></span></p> |
| 65 | +
|
| 66 | + <p style='text-decoration: line-through'><u>underline + line-through?</u></p> |
| 67 | + <p style='text-decoration: underline'><s>underline + line-through?</s></p> |
| 68 | + <p style='text-decoration: underline'><strike>underline + line-through?</strike></p> |
| 69 | +
|
| 70 | + <p style='text-decoration: line-through'><span style='text-decoration: underline'>underline + line-through?</span></p> |
| 71 | + <p style='text-decoration: underline'><span style='text-decoration: line-through'>underline + line-through?</span></p> |
| 72 | +
|
| 73 | + <p class="underline"><span class="lineThrough">underline + line-through?</span></p> |
| 74 | + <p class="underline"><s>underline + line-through?</s></p> |
| 75 | + <p class="underline"><strike>underline + line-through?</strike></p> |
| 76 | +
|
| 77 | + <p class="lineThrough"><span class="underline">underline + line-through?</span></p> |
| 78 | + <p class="lineThrough"><u>underline + line-through?</u></p> |
| 79 | +
|
| 80 | + <div class="underline"><span class="lineThrough">underline + line-through?</span></div> |
| 81 | + <div class="underline"><s>underline + line-through?</s></div> |
| 82 | + <div class="underline"><strike>underline + line-through?</strike></div> |
| 83 | +
|
| 84 | + <div class="lineThrough"><span class="underline">underline + line-through?</span></div> |
| 85 | + <div class="lineThrough"><u>underline + line-through?</u></div> |
| 86 | +
|
| 87 | + <div class="underline"><p class="lineThrough">underline + line-through?</p></div> |
| 88 | + <div class="lineThrough"><p class="underline">underline + line-through?</p></div> |
| 89 | +
|
| 90 | + <div class="underline"><div class="lineThrough">underline + line-through?</div></div> |
| 91 | + <div class="lineThrough"><div class="underline">underline + line-through?</div></div> |
| 92 | + </body> |
| 93 | + </html> |
| 94 | + """; |
| 95 | + |
| 96 | + public static void main(String[] args) { |
| 97 | + final JEditorPane html = new JEditorPane("text/html", HTML); |
| 98 | + html.setEditable(false); |
| 99 | + |
| 100 | + final Dimension size = html.getPreferredSize(); |
| 101 | + html.setSize(size); |
| 102 | + |
| 103 | + BufferedImage image = new BufferedImage(size.width, size.height, |
| 104 | + BufferedImage.TYPE_INT_RGB); |
| 105 | + Graphics g = image.createGraphics(); |
| 106 | + // Paint the editor pane to ensure all views are created |
| 107 | + html.paint(g); |
| 108 | + g.dispose(); |
| 109 | + |
| 110 | + int errorCount = 0; |
| 111 | + String firstError = null; |
| 112 | + |
| 113 | + System.out.println("----- Views -----"); |
| 114 | + final View bodyView = html.getUI() |
| 115 | + .getRootView(html) |
| 116 | + .getView(1) |
| 117 | + .getView(1); |
| 118 | + for (int i = 0; i < bodyView.getViewCount(); i++) { |
| 119 | + View pView = bodyView.getView(i); |
| 120 | + View contentView = getContentView(pView); |
| 121 | + |
| 122 | + String decoration = |
| 123 | + contentView.getAttributes() |
| 124 | + .getAttribute(CSS.Attribute.TEXT_DECORATION) |
| 125 | + .toString(); |
| 126 | + |
| 127 | + System.out.println(i + ": " + decoration); |
| 128 | + if (!decoration.contains("underline") |
| 129 | + || !decoration.contains("line-through")) { |
| 130 | + errorCount++; |
| 131 | + if (firstError == null) { |
| 132 | + firstError = "Line " + i + ": " + decoration; |
| 133 | + } |
| 134 | + } |
| 135 | + } |
| 136 | + |
| 137 | + if (errorCount > 0) { |
| 138 | + saveImage(image); |
| 139 | + throw new RuntimeException(errorCount + " error(s) found, " |
| 140 | + + "the first one: " + firstError); |
| 141 | + } |
| 142 | + } |
| 143 | + |
| 144 | + private static View getContentView(View parent) { |
| 145 | + View view = parent.getView(0); |
| 146 | + return view.getViewCount() > 0 |
| 147 | + ? getContentView(view) |
| 148 | + : view; |
| 149 | + } |
| 150 | + |
| 151 | + private static void saveImage(BufferedImage image) { |
| 152 | + try { |
| 153 | + ImageIO.write(image, "png", |
| 154 | + new File("html.png")); |
| 155 | + } catch (IOException ignored) { } |
| 156 | + } |
| 157 | +} |
0 commit comments