[webkit-changes] cvs commit: LayoutTests/fast/xsl/resources
xslt-entity-enc.xsl
Darin
darin at opensource.apple.com
Sat Oct 8 21:36:59 PDT 2005
darin 05/10/08 21:36:58
Modified: . ChangeLog
Added: fast/xsl xslt-entity-enc-expected.txt xslt-entity-enc.xml
fast/xsl/resources xslt-entity-enc.xsl
Log:
- added a test case for XSLT charset support
http://bugzilla.opendarwin.org/show_bug.cgi?id=5244
* fast/xsl/xslt-entity-enc.xml: Added.
* fast/xsl/resources/xslt-entity-enc.xsl: Added.
* fast/xsl/xslt-entity-enc-expected.txt: Added.
Revision Changes Path
1.25 +9 -0 LayoutTests/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/LayoutTests/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 9 Oct 2005 03:50:12 -0000 1.24
+++ ChangeLog 9 Oct 2005 04:36:57 -0000 1.25
@@ -1,3 +1,12 @@
+2005-10-08 Alexey Proskuryakov <ap at nypop.com>
+
+ - added a test case for XSLT charset support
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=5244
+
+ * fast/xsl/xslt-entity-enc.xml: Added.
+ * fast/xsl/resources/xslt-entity-enc.xsl: Added.
+ * fast/xsl/xslt-entity-enc-expected.txt: Added.
+
2005-10-08 Mitz Pettel <opendarwin.org at mitzpettel.com>
Reviewed by Hyatt.
1.1 LayoutTests/fast/xsl/xslt-entity-enc-expected.txt
Index: xslt-entity-enc-expected.txt
===================================================================
The letters in quotes should look similar (first is Roman, second is Cyrillic): "B", "Ð".
1.1 LayoutTests/fast/xsl/xslt-entity-enc.xml
Index: xslt-entity-enc.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="resources/xslt-entity-enc.xsl"?>
<TEST/>
1.1 LayoutTests/fast/xsl/resources/xslt-entity-enc.xsl
Index: xslt-entity-enc.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="iso8859-1"/>
<xsl:template match="TEST">
<html>
<head>
<title>XSLT Encodings</title>
</head>
<body>
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
</script>
<p>The letters in quotes should look similar (first is Roman, second is Cyrillic): "B", "Ð".</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
More information about the webkit-changes
mailing list