Skip to content

Commit 80b63b6

Browse files
committedFeb 16, 2024
8323801: <s> tag doesn't strikethrough the text
Reviewed-by: honkar, dnguyen, psadhukhan
1 parent 9f4ec21 commit 80b63b6

File tree

2 files changed

+127
-10
lines changed

2 files changed

+127
-10
lines changed
 

‎src/java.desktop/share/classes/javax/swing/text/html/HTMLDocument.java

+38-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,15 +25,43 @@
2525
package javax.swing.text.html;
2626

2727
import java.awt.font.TextAttribute;
28-
import java.util.*;
29-
import java.net.URL;
28+
import java.io.IOException;
29+
import java.io.StringReader;
3030
import java.net.MalformedURLException;
31-
import java.io.*;
32-
import javax.swing.*;
33-
import javax.swing.event.*;
34-
import javax.swing.text.*;
35-
import javax.swing.undo.*;
31+
import java.net.URL;
32+
import java.util.ArrayList;
33+
import java.util.Enumeration;
34+
import java.util.HashMap;
35+
import java.util.Hashtable;
36+
import java.util.Stack;
37+
import java.util.Vector;
38+
39+
import javax.swing.ButtonGroup;
40+
import javax.swing.DefaultButtonModel;
41+
import javax.swing.DefaultComboBoxModel;
42+
import javax.swing.DefaultListModel;
43+
import javax.swing.JToggleButton;
44+
import javax.swing.ListSelectionModel;
45+
import javax.swing.event.DocumentEvent;
46+
import javax.swing.event.EventListenerList;
47+
import javax.swing.event.UndoableEditEvent;
48+
import javax.swing.text.AbstractDocument;
49+
import javax.swing.text.AttributeSet;
50+
import javax.swing.text.BadLocationException;
51+
import javax.swing.text.DefaultEditorKit;
52+
import javax.swing.text.DefaultStyledDocument;
53+
import javax.swing.text.Document;
54+
import javax.swing.text.Element;
55+
import javax.swing.text.ElementIterator;
56+
import javax.swing.text.GapContent;
57+
import javax.swing.text.MutableAttributeSet;
58+
import javax.swing.text.PlainDocument;
59+
import javax.swing.text.SimpleAttributeSet;
60+
import javax.swing.text.StyleConstants;
61+
import javax.swing.undo.UndoableEdit;
62+
3663
import sun.swing.SwingUtilities2;
64+
3765
import static sun.swing.SwingUtilities2.IMPLIED_CR;
3866

3967
/**
@@ -2473,7 +2501,7 @@ public HTMLReader(int offset, int popDepth, int pushDepth,
24732501
tagMap.put(HTML.Tag.SMALL, ca);
24742502
tagMap.put(HTML.Tag.SPAN, ca);
24752503
tagMap.put(HTML.Tag.STRIKE, conv);
2476-
tagMap.put(HTML.Tag.S, ca);
2504+
tagMap.put(HTML.Tag.S, conv);
24772505
tagMap.put(HTML.Tag.STRONG, ca);
24782506
tagMap.put(HTML.Tag.STYLE, new StyleAction());
24792507
tagMap.put(HTML.Tag.SUB, conv);
@@ -3446,7 +3474,7 @@ public void start(HTML.Tag t, MutableAttributeSet attr) {
34463474
String value = "underline";
34473475
value = (v != null) ? value + "," + v.toString() : value;
34483476
sheet.addCSSAttribute(charAttr, CSS.Attribute.TEXT_DECORATION, value);
3449-
} else if (t == HTML.Tag.STRIKE) {
3477+
} else if (t == HTML.Tag.STRIKE || t == HTML.Tag.S) {
34503478
Object v = charAttr.getAttribute(CSS.Attribute.TEXT_DECORATION);
34513479
String value = "line-through";
34523480
value = (v != null) ? value + "," + v.toString() : value;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
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.io.StringReader;
25+
26+
import javax.swing.text.AttributeSet;
27+
import javax.swing.text.Element;
28+
import javax.swing.text.html.CSS;
29+
import javax.swing.text.html.HTMLDocument;
30+
import javax.swing.text.html.HTMLEditorKit;
31+
32+
/*
33+
* @test
34+
* @bug 8323801
35+
* @summary Tests that '<u><s>' produce underlined and struck-through text
36+
*/
37+
public final class HTMLUnderlineStrike {
38+
private static final String HTML = """
39+
<!DOCTYPE html>
40+
<html lang="en">
41+
<head>
42+
<meta charset="UTF-8">
43+
<title>Strike-through text</title>
44+
</head>
45+
<body>
46+
<p><u><s>struck?</s></u></p>
47+
<p><span style='text-decoration: underline'><s>struck?</s></span></p>
48+
49+
<p><u><strike>struck?</strike></u></p>
50+
<p><span style='text-decoration: underline'><strike>struck?</strike></span></p>
51+
</body>
52+
</html>
53+
""";
54+
55+
public static void main(String[] args) throws Exception {
56+
HTMLEditorKit kit = new HTMLEditorKit();
57+
HTMLDocument doc = new HTMLDocument();
58+
59+
try (StringReader reader = new StringReader(HTML)) {
60+
kit.read(reader, doc, 0);
61+
}
62+
63+
StringBuilder errors = new StringBuilder();
64+
65+
Element root = doc.getDefaultRootElement();
66+
Element body = root.getElement(1);
67+
for (int i = 0; i < body.getElementCount(); i++) {
68+
Element p = body.getElement(i);
69+
Element content = p.getElement(0);
70+
AttributeSet attr = content.getAttributes();
71+
Object decoration = attr.getAttribute(CSS.Attribute.TEXT_DECORATION);
72+
String strDecoration = decoration.toString();
73+
System.out.println(i + ": " + decoration);
74+
if (!strDecoration.contains("line-through")
75+
|| !strDecoration.contains("underline")) {
76+
errors.append("<p>[")
77+
.append(i)
78+
.append("], ");
79+
}
80+
}
81+
82+
if (!errors.isEmpty()) {
83+
errors.delete(errors.length() - 2, errors.length());
84+
throw new RuntimeException(errors + " must have both "
85+
+ "'line-through' and 'underline' in "
86+
+ "'text-decoration'");
87+
}
88+
}
89+
}

0 commit comments

Comments
 (0)
Please sign in to comment.