aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-07-08 20:22:50 +0000
committerJohn Resig <jeresig@gmail.com>2007-07-08 20:22:50 +0000
commit5e7c1fc3ae42e2312bccc7679b03238f7e5d5c17 (patch)
tree1e42614fabcc1cf94114063df3a5c73bc8d978b1 /build
parentfeb475d9b1f7fc0a1b6efa746e952893014ff771 (diff)
downloadjquery-5e7c1fc3ae42e2312bccc7679b03238f7e5d5c17.tar.gz
jquery-5e7c1fc3ae42e2312bccc7679b03238f7e5d5c17.zip
UTF8 support rolled in (both for external docs and innerHTML).
Diffstat (limited to 'build')
-rw-r--r--build/runtest/env.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/build/runtest/env.js b/build/runtest/env.js
index 648332462..fae6490b3 100644
--- a/build/runtest/env.js
+++ b/build/runtest/env.js
@@ -12,7 +12,9 @@ var window = this;
};
window.__defineSetter__("location", function(url){
- window.document = new DOMDocument(url);
+ window.document = new DOMDocument(
+ new Packages.org.xml.sax.InputSource( new java.io.InputStreamReader(
+ new java.io.FileInputStream(url))));
});
window.__defineGetter__("location", function(url){
@@ -256,7 +258,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 );