-
Type:
Bug
-
Resolution: Timed out
-
Priority:
Low
-
None
-
Affects Version/s: 6.3
-
Component/s: Issue - Fields
-
6.03
-
1
-
Severity 3 - Minor
-
Actual Case on Attribute Name
The attribute name is rendered in black when there is newline within the element.
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet exclude-result-prefixes="xs" version="3.0"> </xsl:stylesheet>
Work Around
Delete the newline within the element.
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet exclude-result-prefixes="xs" version="3.0"> </xsl:stylesheet>
Actual Case on Comment, CData and Processing Instruction
When there is newline within comment, CData and Processing Instruction, all the text will be rendered in black
<root> <![[CDATA this is cdata]]> <!-- comment --><?pi instruction ?> </root>
Work Around
The colour rendered correctly when there is no newline within.
<root> <![[CDATA this is cdata]]> <!--comment --> <?pi instruction ?> </root>