Closed
Bug 258732
Opened 21 years ago
Closed 21 years ago
XSLT engine ignores the disable-output-escaping attribute in xsl:text tags
Categories
(Core :: XSLT, defect)
Tracking
()
People
(Reporter: technique, Assigned: peterv)
Details
User-Agent: Mozilla/5.0 (X11; U; Linux i686; fr-FR; rv:1.6) Gecko/20040413 Debian/1.6-5
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; fr-FR; rv:1.6) Gecko/20040413 Debian/1.6-5
In <xsl:text>, specials characters like > or < are escaped when the
disable-output-escaping option is set to "yes".
Reproducible: Always
Steps to Reproduce:
In XSL stylesheet use :
<xsl:text disable-output-escaping="yes">
2 > 1
</xsl:text>
Actual Results:
Generated HTML code is : 2 &gt; 1
Expected Results:
Should generate : 2 > 1
Comment 1•21 years ago
|
||
disable-output-escaping is not supported, see other bug.
*** This bug has been marked as a duplicate of 98168 ***
Status: UNCONFIRMED → RESOLVED
Closed: 21 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•