-
Type:
Bug
-
Status: Resolved
-
Priority:
P3
-
Resolution: Fixed
-
Affects Version/s: 9
-
Fix Version/s: 9
-
Component/s: client-libs
-
Labels:
-
Subcomponent:
-
Introduced In Build:b96
-
Introduced In Version:
-
Resolved In Build:b137
-
CPU:generic
-
OS:generic
setting i18n property to true for a document brakes the text layout.
Compile and run the next test:
public class I18nTest {
public static void main(String[] args) throws Exception {
JFrame jFrame = new JFrame();
JEditorPane component = new JEditorPane();
component.setEditorKit(new StyledEditorKit());
component.getDocument().putProperty("i18n", Boolean.TRUE);
SimpleAttributeSet attrs = new SimpleAttributeSet();
StyleConstants.setFontSize(attrs, 72);
StyleConstants.setBold(attrs, true);
StyleConstants.setUnderline(attrs, true);
component.getDocument().insertString(0, "test test", null);
component.getDocument().insertString(5, "TEST TEST TEST", attrs);
jFrame.getContentPane().add(new JScrollPane(component));
jFrame.setSize(300, 500);
jFrame.setVisible(true);
}
}
it produces layout shown on the l2.png screenshot, but should look like l1.png.
Compile and run the next test:
public class I18nTest {
public static void main(String[] args) throws Exception {
JFrame jFrame = new JFrame();
JEditorPane component = new JEditorPane();
component.setEditorKit(new StyledEditorKit());
component.getDocument().putProperty("i18n", Boolean.TRUE);
SimpleAttributeSet attrs = new SimpleAttributeSet();
StyleConstants.setFontSize(attrs, 72);
StyleConstants.setBold(attrs, true);
StyleConstants.setUnderline(attrs, true);
component.getDocument().insertString(0, "test test", null);
component.getDocument().insertString(5, "TEST TEST TEST", attrs);
jFrame.getContentPane().add(new JScrollPane(component));
jFrame.setSize(300, 500);
jFrame.setVisible(true);
}
}
it produces layout shown on the l2.png screenshot, but should look like l1.png.
- blocks
-
JDK-8158209 Editing in TableView breaks the layout, when the document is I18n
-
- Resolved
-
- relates to
-
JDK-8143177 Integrate harfbuzz opentype layout engine per JEP 258
-
- Resolved
-