+2006-02-11 Eric Seidel <eseidel@apple.com>
+
+ Reviewed by hyatt.
+
+ Adding support for external entity declarations in XSLT.
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=7184
+ <rdar://problem/4271696> support external DTD references in XSLT
+
+ * fast/parser/external-entities-expected.checksum: Added.
+ * fast/parser/external-entities-expected.png: Added.
+ * fast/parser/external-entities-expected.txt: Added.
+ * fast/parser/external-entities-in-xslt-expected.txt: Added.
+ * fast/parser/external-entities-in-xslt.xml: Added.
+ * fast/parser/external-entities.xml: Added.
+ * fast/parser/resources: Added.
+ * fast/parser/resources/external-entities.dtd: Added.
+ * fast/parser/resources/external-entities.xsl: Added.
+
2006-02-10 Beth Dakin <bdakin@apple.com>
Reviewed by Hyatt
--- /dev/null
+layer at (0,0) size 800x600
+ RenderCanvas at (0,0) size 800x600
+layer at (0,0) size 800x164
+ RenderBlock {HTML} at (0,0) size 800x164
+ RenderBlock (anonymous) at (0,0) size 800x0
+ RenderInline {PARSERERROR} at (0,0) size 0x0 [bgcolor=#FFDDDD] [border: (2px solid #CC7777)]
+ RenderBlock (anonymous) at (0,18) size 800x94
+ RenderBlock {H3} at (0,0) size 800x22
+ RenderText {TEXT} at (0,0) size 324x22
+ text run at (0,0) width 324: "This page contains the following errors:"
+ RenderBlock {DIV} at (0,40) size 800x14
+ RenderText {TEXT} at (0,0) size 406x14
+ text run at (0,0) width 406: "error on line 9 at column 47: Entity 'message' not defined"
+ RenderBlock {H3} at (0,72) size 800x22
+ RenderText {TEXT} at (0,0) size 429x22
+ text run at (0,0) width 429: "Below is a rendering of the page up to the first error."
+ RenderBlock (anonymous) at (0,130) size 800x0
+ RenderInline {PARSERERROR} at (0,0) size 0x0 [bgcolor=#FFDDDD] [border: (2px solid #CC7777)]
+ RenderBody {BODY} at (8,130) size 784x18
+ RenderBlock {P} at (0,0) size 784x0
+ RenderBlock {P} at (0,0) size 784x18
+ RenderInline {FONT} at (0,0) size 489x18 [color=#FF0000]
+ RenderText {TEXT} at (0,0) size 489x18
+ text run at (0,0) width 263: "This should be the only line on this page. "
+ text run at (263,0) width 226: "You should see a parse error above."
--- /dev/null
+<?xml version="1.0" ?>\r
+<!DOCTYPE html SYSTEM "resources/external-entities.dtd">\r
+<html xmlns="http://www.w3.org/1999/xhtml">\r
+<body>\r
+<script type="text/javascript">\r
+if (window.layoutTestController)\r
+ layoutTestController.dumpAsText();\r
+</script>\r
+<p>&message;</p>\r
+<p class="test"><font color="red"> This should be the only line on this page. You should see a parse error above.</font></p>\r
+</body>\r
+</html>\r
--- /dev/null
+<?xml version="1.0" encoding="utf-8" ?>\r
+<!DOCTYPE xsl:stylesheet SYSTEM "resources/external-entities.dtd">\r
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">\r
+ <xsl:template match="/">\r
+ <HTML>\r
+ <SCRIPT type="text/javascript">\r
+ if (window.layoutTestController)\r
+ layoutTestController.dumpAsText();\r
+ </SCRIPT>\r
+ <BODY>\r
+ &message;\r
+ </BODY>\r
+ </HTML>\r
+ </xsl:template>\r
+</xsl:stylesheet>
\ No newline at end of file