remove globals in tests for compability with ?noglobals, to be enabled by default
This commit is contained in:
parent
0b36b26259
commit
f55fb36e54
|
@ -763,7 +763,10 @@ test("jQuery.getJSON - Using Native JSON", function() {
|
||||||
|
|
||||||
stop();
|
stop();
|
||||||
jQuery.getJSON(url("data/json.php"), function(json) {
|
jQuery.getJSON(url("data/json.php"), function(json) {
|
||||||
window.JSON = old;
|
if (!old)
|
||||||
|
delete window.JSON
|
||||||
|
else
|
||||||
|
window.JSON = old;
|
||||||
equals( json, true, "Verifying return value" );
|
equals( json, true, "Verifying return value" );
|
||||||
start();
|
start();
|
||||||
});
|
});
|
||||||
|
|
|
@ -626,7 +626,7 @@ var testHtml = function(valueObj) {
|
||||||
}
|
}
|
||||||
ok( pass, "Set HTML" );
|
ok( pass, "Set HTML" );
|
||||||
|
|
||||||
window.debug = false;
|
delete window.debug;
|
||||||
|
|
||||||
reset();
|
reset();
|
||||||
// using contents will get comments regular, text, and comment nodes
|
// using contents will get comments regular, text, and comment nodes
|
||||||
|
|
Loading…
Reference in a new issue