summaryrefslogtreecommitdiff
path: root/test/files/xml/xhtml.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/xml/xhtml.scala')
-rw-r--r--test/files/xml/xhtml.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/xml/xhtml.scala b/test/files/xml/xhtml.scala
index 07cf3a1a74..2e3998732c 100644
--- a/test/files/xml/xhtml.scala
+++ b/test/files/xml/xhtml.scala
@@ -9,7 +9,7 @@ object Test {
def main( argv:Array[String] ) = {
val link = A(
- new AttributeSeq(
+ AttributeSeq.fromAttrs(
Attribute("","href","http://lampwww.epfl.ch")
),
Text("link")
@@ -26,7 +26,7 @@ object Test {
val page = Html(n,
Head(n,
Base(
- new AttributeSeq(
+ AttributeSeq.fromAttrs(
Attribute("","href","http://here.edu")
)),
Title(n,Text("a basic xhtml page"))),