Я могу работать в firefox, но не могу сделать это в Chrome или Safari. Я хочу, чтобы он работал во всех трех браузерах
Chrome Версия - 79.0.3945.130 (Официальная сборка) (64-разрядная версия). Запустил open -n -a "Google Chrome" --args --disable-web-security --user-data-dir=$HOME/fakeChromeDir
для запуска xsl
Safari Version - 13.0. 4 (14608.4.9.1.4) Проверено Отключить локальные ограничения для файлов и ограничения между источниками
Firefox Версия - 68.4.2esr (64 бита) Устанавливается в privacy.file_unique_origin; ложь и security.fileuri.strict_origin_policy; false
Если заменить код ниже в XSL
<xsl:for-each select="*">
<xsl:apply-templates select=".[*/*]"/>
<xsl:apply-templates
select=".[* and not(*/*)][generate-id() = generate-id(key('table-group', concat(generate-id(..), '|', local-name()))[1])]" mode="merge-groups"/>
</xsl:for-each>
на
<xsl:apply-templates select="*[*/*]"/>
<xsl:apply-templates
select="*[* and not(*/*)][generate-id() = generate-id(key('table-group', concat(generate-id(..), '|', local-name()))[1])]" mode="merge-groups"/>
Он работает во всех браузерах, но я хочу сохранить порядок таблиц, как в xml. Итак, я использую для l oop.
Мой XML файл
<?xml version = '1.0' encoding = 'utf-8'?>
<?xml-stylesheet type="text/xsl" href="transformer.xsl" ?>
<group1>
<item1>val1</item1>
<item2>val2</item2>
<group2>
<item3>val3</item3>
<item4>val4</item4>
<group3>
<item5>val5</item5>
</group3>
</group2>
<group2>
<item3>val6</item3>
<item4>val7</item4>
<group3>
<item5>val8</item5>
</group3>
</group2>
<group4>
<item6>val9</item6>
<item7>val10</item7>
</group4>
<group4>
<item6>val11</item6>
<item7>val12</item7>
</group4>
</group1>
Мой XSL-файл
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
xmlns:msxml="urn:schemas-microsoft-com:xslt"
exclude-result-prefixes="exsl msxml"
version="1.0">
<xsl:output method="html" indent="yes" version="5" doctype-system="about:legacy-doctype"/>
<xsl:key name="table-group"
match="*[* and not(*/*)]"
use="concat(generate-id(..), '|', local-name())"/>
<xsl:template match="*[*]">
<div>
<h4><xsl:value-of select="local-name()"/></h4>
<table>
<thead>
<tr>
<xsl:apply-templates select="*[not(*)]" mode="header"/>
</tr>
</thead>
<tbody>
<tr>
<xsl:apply-templates select="*[not(*)]"/>
</tr>
</tbody>
</table>
</div>
<xsl:for-each select="*">
<xsl:apply-templates select=".[*/*]"/>
<xsl:apply-templates
select=".[* and not(*/*)][generate-id() = generate-id(key('table-group', concat(generate-id(..), '|', local-name()))[1])]" mode="merge-groups"/>
</xsl:for-each>
</xsl:template>
<xsl:template match="*[not(*)]" mode="header">
<th>
<xsl:value-of select="local-name()"/>
</th>
</xsl:template>
<xsl:template match="*[not(*)]">
<td>
<xsl:value-of select="."/>
</td>
</xsl:template>
<xsl:template match="*[*]" mode="merge-groups">
<div>
<h4><xsl:value-of select="local-name()"/></h4>
<table>
<thead>
<tr>
<xsl:apply-templates select="*[not(*)]" mode="header"/>
</tr>
</thead>
<tbody>
<xsl:apply-templates select="key('table-group', concat(generate-id(..), '|', local-name()))" mode="row"/>
</tbody>
</table>
</div>
</xsl:template>
<xsl:template match="*" mode="row">
<tr>
<xsl:apply-templates select="*"/>
</tr>
</xsl:template>
<xsl:template match="/">
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css" />
<title>Diagnostic Report</title>
</head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>