summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2003-11-24 15:56:48 +0000
committerburaq <buraq@epfl.ch>2003-11-24 15:56:48 +0000
commitfebd795bebb8a72fb90bd6fedb17a4c0318e648d (patch)
tree19910f0b938b3f08684a31fdccd2df21ec176049 /test
parent4d6fdfcccadbda6bdf9432186a22eb726cabb1d9 (diff)
downloadscala-febd795bebb8a72fb90bd6fedb17a4c0318e648d.tar.gz
scala-febd795bebb8a72fb90bd6fedb17a4c0318e648d.tar.bz2
scala-febd795bebb8a72fb90bd6fedb17a4c0318e648d.zip
modified class name of PCDATA to Text
Diffstat (limited to 'test')
-rw-r--r--test/files/xml/xhtml.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/xml/xhtml.check b/test/files/xml/xhtml.check
index b9292c7b38..637ac783a2 100644
--- a/test/files/xml/xhtml.check
+++ b/test/files/xml/xhtml.check
@@ -1,3 +1,3 @@
<html><head><title>a basic xhtml page</title></head><body><h1>Welcome to xhtml in scala</h1><p>a paragraph</p><p>another one, with a <a>link</a> to the LAMP homepage.</p></body></html>
-html(List(head(List(title(List(PCDATA(a basic xhtml page))))),body(List(h1(List(PCDATA(Welcome to xhtml in scala))),p(List(PCDATA(a paragraph))),p(List(PCDATA(another, with a ),a(List(PCDATA(example link))),PCDATA( to lamp homepage)))))))
+html(List(head(List(title(List(Text(a basic xhtml page))))),body(List(h1(List(Text(Welcome to xhtml in scala))),p(List(Text(a paragraph))),p(List(Text(another, with a ),a(List(Text(example link))),Text( to lamp homepage)))))))
<html version="-//W3C//DTD XHTML Basic 1.0//EN"><head profile=""><title>a basic xhtml page</title></head><body><h1>Welcome to xhtml in scala</h1><p>a paragraph</p><p>another, with a <a href="http://lampwww.epfl.ch">example link</a> to lamp homepage</p></body></html>