При запуске XML-файла через Chrome я получаю пустой вывод, а в Mozilla вывод - просто текст, хотя предполагается, что это таблица
Это XML-файл:
List.xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="list.xsl"?>
<papers>
<info>
<title>Neural Machine Translation and Artificial Intelligence : What Is Left for the Human Translator</title>
<author>Laura Tomasello</author>
<ISBN>6215912354785</ISBN>
<domain>AI</domain>
</info>
<info>
<title>Designing Preferences, Beliefs, and Identities for Artificial Intelligence</title>
<author>Vincent Conitzer</author>
<ISBN>3526293157315</ISBN>
<domain>AI</domain>
</info>
</papers>
Это xsl-файл: List.xsl
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<xsl:template match="/">
<html xlns="http://www.w3.org/1999/xhtml">
<body bgcolor="lightblue">
<h1 style="color:blue"><i>Research Papers</i></h1>
<table border="2" width="80%" height="50%">
<tr bgcolor="grey">
<th style="text-align:center;color:white">Title</th>
<th style="text-align:center;color:white">Author</th>
<th style="text-align:center;color:white">ISBN</th>
<th style="text-align:center;color:white">Domain</th>
</tr>
<xsl:for-each select="papers/info">
<tr bgcolor="white">
<td style="text-align:center"><xsl:value-of select="title"/></td>
<td style="text-align:center"><xsl:value-of select="author"/></td>
<td style="text-align:center"><xsl:value-of select="ISBN"/></td>
<td style="text-align:center"><xsl:value-of select="domain"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Chrome выдает пустой вывод, хотя код выглядит нормально. Согласно моему намеченному коду, введенные данные должны отображаться в таблице со стилем, который я указал в таблице стилей, но это просто обычный текст в Mozilla и пустой вывод в Chrome.