Author: jmorliaguet
Date: Wed Feb  8 00:58:44 2006
New Revision: 2322

Modified:
   cpsskins/branches/jmo-perspectives/ui/framework/tests/unit/cpsskins_test.html
Log:

- test fixes for Opera



Modified: 
cpsskins/branches/jmo-perspectives/ui/framework/tests/unit/cpsskins_test.html
==============================================================================
--- 
cpsskins/branches/jmo-perspectives/ui/framework/tests/unit/cpsskins_test.html   
    (original)
+++ 
cpsskins/branches/jmo-perspectives/ui/framework/tests/unit/cpsskins_test.html   
    Wed Feb  8 00:58:44 2006
@@ -264,23 +264,23 @@
 
     testCreateNode: function() { with(this) {
       var n1 = Canvas.createNode({
-        tag: "div",
+        tag: "div"
       });
       assertEqual(n1.tagName.toLowerCase(), "div");
 
       var n2 = Canvas.createNode({
         tag: "a",
         attributes: {
-          "href": "someurl.html"
+          "href": "http://someurl.html/";
         }
       });
       assertEqual(n2.tagName.toLowerCase(), "a");
-      assertEqual(n2.getAttribute("href"), "someurl.html");
+      assertEqual(n2.getAttribute("href"), "http://someurl.html/";);
 
       var n3 = Canvas.createNode({
         tag: "span",
         classes: "cssClass",
-        style: {position: "absolute", display: "none"},
+        style: {position: "absolute", display: "none"}
       });
       assertEqual(n3.tagName.toLowerCase(), "span");
       assertEqual(n3.style.position, "absolute");
@@ -289,7 +289,7 @@
 
       var n4 = Canvas.createNode({
         tag: "p",
-        text: "Some text",
+        text: "Some text"
       });
       assertEqual(n4.innerHTML, "Some text");
     }},
-- 
http://lists.nuxeo.com/mailman/listinfo/z3lab-checkins

Reply via email to