summaryrefslogtreecommitdiffstats
path: root/dom/xml/resources/XMLPrettyPrint.xsl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:50 +0000
commitdef92d1b8e9d373e2f6f27c366d578d97d8960c6 (patch)
tree2ef34b9ad8bb9a9220e05d60352558b15f513894 /dom/xml/resources/XMLPrettyPrint.xsl
parentAdding debian version 125.0.3-1. (diff)
downloadfirefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.tar.xz
firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/xml/resources/XMLPrettyPrint.xsl')
-rw-r--r--dom/xml/resources/XMLPrettyPrint.xsl11
1 files changed, 9 insertions, 2 deletions
diff --git a/dom/xml/resources/XMLPrettyPrint.xsl b/dom/xml/resources/XMLPrettyPrint.xsl
index b23296cf0d..7b9397cde7 100644
--- a/dom/xml/resources/XMLPrettyPrint.xsl
+++ b/dom/xml/resources/XMLPrettyPrint.xsl
@@ -33,7 +33,7 @@
</xsl:template>
<xsl:template match="*[node()]">
- <div>
+ <div><xsl:apply-templates mode="space" select="@xml:space"/>
<xsl:text>&lt;</xsl:text>
<span class="start-tag"><xsl:value-of select="name(.)"/></span>
<xsl:apply-templates select="@*"/>
@@ -48,7 +48,7 @@
</xsl:template>
<xsl:template match="*[* or processing-instruction() or comment() or string-length(.) &gt; 50]">
- <div>
+ <div><xsl:apply-templates mode="space" select="@xml:space"/>
<details open="" class="expandable-body">
<summary class="expandable-opening">
<xsl:text>&lt;</xsl:text>
@@ -68,6 +68,13 @@
</div>
</xsl:template>
+ <xsl:template match="@xml:space[string() = 'default']" mode="space">
+ <xsl:attribute name="class">space-default</xsl:attribute>
+ </xsl:template>
+ <xsl:template match="@xml:space[string() = 'preserve']" mode="space">
+ <xsl:attribute name="class">space-preserve</xsl:attribute>
+ </xsl:template>
+
<xsl:template match="@*">
<xsl:text> </xsl:text>
<span class="attribute-name"><xsl:value-of select="name(.)"/></span>