From: John Resig Date: Sun, 8 Jul 2007 20:22:50 +0000 (+0000) Subject: UTF8 support rolled in (both for external docs and innerHTML). X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=5e7c1fc3ae42e2312bccc7679b03238f7e5d5c17 UTF8 support rolled in (both for external docs and innerHTML). --- diff --git a/build/runtest/env.js b/build/runtest/env.js index 6483324..fae6490 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("" + html + "")) - .getBytes())).documentElement, true).childNodes; + .getBytes("UTF8"))).documentElement, true).childNodes; while (this.firstChild) this.removeChild( this.firstChild );