Fixed bug #1594, #1565, #1598 - all of which were concerning the improper execution of embedded scripts in IE and Safari.

This commit is contained in:
John Resig 2007-09-15 02:16:29 +00:00
parent 62d84e44ac
commit 606b863eda
2 changed files with 29 additions and 10 deletions

View file

@ -821,7 +821,7 @@ test("val(String)", function() {
});
test("html(String)", function() {
expect(1);
expect(3);
var div = $("div");
div.html("<b>test</b>");
var pass = true;
@ -830,8 +830,13 @@ test("html(String)", function() {
}
ok( pass, "Set HTML" );
// Ccommented out until we can resolve it
// $("#main").html('<script type="text/javascript">ok( true, "$().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script>').evalScripts();
stop();
$("#main").html('<script type="text/javascript">ok( true, "$().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script>');
$("#main").html('foo <form><script type="text/javascript">ok( true, "$().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script></form>');
setTimeout( start, 100 );
});
test("filter()", function() {