Added test for #975, so far it passes only in opera
This commit is contained in:
parent
a10afee0c3
commit
b8aa9e7cfc
1 changed files with 5 additions and 0 deletions
5
src/jquery/coreTest.js
vendored
5
src/jquery/coreTest.js
vendored
|
@ -821,3 +821,8 @@ test("click() context", function() {
|
||||||
return false;
|
return false;
|
||||||
}).click();
|
}).click();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test("$().html().evalScripts() Eval's Scripts Twice in Firefox, see #975", function() {
|
||||||
|
expect(1);
|
||||||
|
$("#main").html('<script type="text/javascript">ok( true, "execute script" );</script>').evalScripts();
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in a new issue