JEditorPane 正在丢弃空元素
以下测试在 JRE 1.6.0_20 上失败。
public void testSetGetTextWithList() throws Exception {
final JEditorPane editorPane = new JEditorPane();
editorPane.setContentType("text/html");
editorPane.setText("<ul><li></li></ul>");
assertTrue(editorPane.getText().contains("<ul"));
}
当然,空列表和不存在的列表之间存在视觉差异,因此我希望编辑器不会丢弃空列表。有人可以简单地解决这个问题吗?
The following test fails with JRE 1.6.0_20
public void testSetGetTextWithList() throws Exception {
final JEditorPane editorPane = new JEditorPane();
editorPane.setContentType("text/html");
editorPane.setText("<ul><li></li></ul>");
assertTrue(editorPane.getText().contains("<ul"));
}
Of course, there is a visual difference between an empty list and a non-existing list, so I expect the editor not to discard the empty list. Anybody with an easy solution for this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当该元素是文档中的最后一个块元素时才会发生错误,如果将输入更改为以下之一,则测试通过
The error occurs only if the element is the last block element in the document, the test passes if you change the input to one of