From b9dfcfd7362825ccda0ca4ea96d385b0c6ae522d Mon Sep 17 00:00:00 2001 From: jaubourg Date: Tue, 27 Nov 2012 02:39:08 +0100 Subject: [PATCH] sandboxes start for real this time (fixes test failures in IE) --- test/data/testinit.js | 8 -------- test/data/testrunner.js | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/data/testinit.js b/test/data/testinit.js index 0a7448f26..a866d3227 100644 --- a/test/data/testinit.js +++ b/test/data/testinit.js @@ -252,11 +252,3 @@ function ajaxTest( title, expect, options ) { window.iframeCallback = undefined; }()); - -// Sandbox start for great justice -(function() { - var oldStart = window.start; - window.start = function() { - oldStart(); - }; -})(); diff --git a/test/data/testrunner.js b/test/data/testrunner.js index 6041e4bd4..b17bf265f 100644 --- a/test/data/testrunner.js +++ b/test/data/testrunner.js @@ -159,6 +159,14 @@ var Globals = (function() { }; })(); +// Sandbox start for great justice +(function() { + var oldStart = window.start; + window.start = function() { + oldStart(); + }; +})(); + /** * QUnit hooks */ -- 2.39.5