sandboxes start for real this time (fixes test failures in IE)

This commit is contained in:
jaubourg 2012-11-27 02:39:08 +01:00
parent e679f6c2db
commit b9dfcfd736
2 changed files with 8 additions and 8 deletions

View File

@ -252,11 +252,3 @@ function ajaxTest( title, expect, options ) {
window.iframeCallback = undefined; window.iframeCallback = undefined;
}()); }());
// Sandbox start for great justice
(function() {
var oldStart = window.start;
window.start = function() {
oldStart();
};
})();

View File

@ -159,6 +159,14 @@ var Globals = (function() {
}; };
})(); })();
// Sandbox start for great justice
(function() {
var oldStart = window.start;
window.start = function() {
oldStart();
};
})();
/** /**
* QUnit hooks * QUnit hooks
*/ */