summaryrefslogtreecommitdiffstats
path: root/dom/xml/resources
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
commitd8bbc7858622b6d9c278469aab701ca0b609cddf (patch)
treeeff41dc61d9f714852212739e6b3738b82a2af87 /dom/xml/resources
parentReleasing progress-linux version 125.0.3-1~progress7.99u1. (diff)
downloadfirefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.tar.xz
firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/xml/resources')
-rw-r--r--dom/xml/resources/XMLPrettyPrint.css8
-rw-r--r--dom/xml/resources/XMLPrettyPrint.xsl11
2 files changed, 17 insertions, 2 deletions
diff --git a/dom/xml/resources/XMLPrettyPrint.css b/dom/xml/resources/XMLPrettyPrint.css
index 845833c46f..4e2088bd91 100644
--- a/dom/xml/resources/XMLPrettyPrint.css
+++ b/dom/xml/resources/XMLPrettyPrint.css
@@ -56,3 +56,11 @@
font-family: monospace;
white-space: pre;
}
+
+.space-default {
+ white-space: initial;
+}
+
+.space-preserve {
+ white-space: pre-wrap;
+}
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>