Fixed some bugs with the test suite and fixed a bug with setting attributes.

This commit is contained in:
John Resig 2006-08-25 18:38:24 +00:00
parent 7caca06cfc
commit 906478800d
3 changed files with 35 additions and 39 deletions

View file

@ -4,7 +4,7 @@ function runTests(files) {
function runTest( files, num ) {
$.get(files[num],function(js){
js = js.replace(/&lt;/g, "<").replace(/&gt;/g, ">");
js = js.replace(/&lt;/g, "<").replace(/&gt;/g, ">").replace(/&amp;/g, "&");
try {
eval(js);