[webkit-changes] cvs commit: LayoutTests/fast/xsl/resources
xslt-extra-content-at-end.xsl xslt-mismatched-tags-in-xslt.xsl
xslt-missing-namespace-in-xslt.xsl
Eric
eseidel at opensource.apple.com
Sun Dec 11 20:15:19 PST 2005
eseidel 05/12/11 20:15:19
Modified: . ChangeLog
Added: fast/xsl/resources xslt-extra-content-at-end.xsl
xslt-mismatched-tags-in-xslt.xsl
xslt-missing-namespace-in-xslt.xsl
Log:
Bug #: 5875
Submitted by: eseidel
Reviewed by: darin & mjs
Adding resources overlooked in previous commit.
* fast/xsl/resources/xslt-extra-content-at-end.xsl: Added.
* fast/xsl/resources/xslt-mismatched-tags-in-xslt.xsl: Added.
* fast/xsl/resources/xslt-missing-namespace-in-xslt.xsl: Added.
Revision Changes Path
1.140 +8 -0 LayoutTests/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/LayoutTests/ChangeLog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- ChangeLog 11 Dec 2005 11:47:39 -0000 1.139
+++ ChangeLog 12 Dec 2005 04:15:18 -0000 1.140
@@ -1,5 +1,13 @@
2005-12-11 Eric Seidel <eseidel at apple.com>
+ Adding resources overlooked in previous commit.
+
+ * fast/xsl/resources/xslt-extra-content-at-end.xsl: Added.
+ * fast/xsl/resources/xslt-mismatched-tags-in-xslt.xsl: Added.
+ * fast/xsl/resources/xslt-missing-namespace-in-xslt.xsl: Added.
+
+2005-12-11 Eric Seidel <eseidel at apple.com>
+
Reviewed by darin & mjs.
Fixes SVG to load external scripts and report parse errors.
1.1 LayoutTests/fast/xsl/resources/xslt-extra-content-at-end.xsl
Index: xslt-extra-content-at-end.xsl
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" encoding="UTF-8"/>
<xsl:template match="TEST">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<p>You should see error text above this</p>
</body>
</html>
<p>this, and nothing below it should be rendered</p>
furtermore, this should be invalid.
</xsl:template>
</xsl:stylesheet>
1.1 LayoutTests/fast/xsl/resources/xslt-mismatched-tags-in-xslt.xsl
Index: xslt-mismatched-tags-in-xslt.xsl
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" encoding="UTF-8"/>
<xsl:template match="TEST">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<p>You should see error text above this</p>
<p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
1.1 LayoutTests/fast/xsl/resources/xslt-missing-namespace-in-xslt.xsl
Index: xslt-missing-namespace-in-xslt.xsl
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" encoding="UTF-8"/>
<xsl:template match="TEST">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<p>You should see error text above this</p>
<foo:bar />
<p>ERROR? this, and nothing below it should be rendered</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
More information about the webkit-changes
mailing list