A barebones implementation of getComputedStyle.
[jquery.git] / build / runtest / env.js
index 6483324..564b022 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Simulated browser environment for Rhino
+ *   By John Resig <http://ejohn.org/>
+ * Copyright 2007 John Resig, under the MIT License
+ */
+
 // The window Object
 var window = this;
 
@@ -12,7 +18,9 @@ var window = this;
        };
        
        window.__defineSetter__("location", function(url){
-               window.document = new DOMDocument(url);
+               window.document = new DOMDocument(
+                       new Packages.org.xml.sax.InputSource(\r                  new java.io.InputStreamReader(
+                               new java.io.FileInputStream(url))));
        });
        
        window.__defineGetter__("location", function(url){
@@ -97,11 +105,6 @@ var window = this;
                get body(){
                        return this.getElementsByTagName("body")[0];
                },
-               defaultView: {
-                       getComputedStyle: {
-                               getPropertyValue: function(){ }
-                       }
-               },
                get documentElement(){
                        return makeNode( this._dom.getDocumentElement() );
                },
@@ -123,12 +126,20 @@ var window = this;
                
                get defaultView(){
                        return {
-                               getComputedStyle: function(){
+                               getComputedStyle: function(elem){
                                        return {
-                                               getPropertyValue: function(){
-                                                       return "";
+                                               getPropertyValue: function(prop){
+                                                       prop = prop.replace(/\-(\w)/g,function(m,c){
+                                                               return c.toUpperCase();
+                                                       });
+                                                       var val = elem.style[prop];
+                                                       
+                                                       if ( prop == "opacity" && val == "" )
+                                                               val = "1";
+                                                               
+                                                       return val;
                                                }
-                                       }
+                                       };
                                }
                        };
                }
@@ -256,7 +267,7 @@ var window = this;
                        var nodes = this.ownerDocument.importNode(
                                new DOMDocument( new java.io.ByteArrayInputStream(
                                        (new java.lang.String("<wrap>" + html + "</wrap>"))
-                                               .getBytes())).documentElement, true).childNodes;
+                                               .getBytes("UTF8"))).documentElement, true).childNodes;
                                
                        while (this.firstChild)
                                this.removeChild( this.firstChild );