diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2013-11-12 13:31:35 -0500 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2013-11-12 13:31:35 -0500 |
commit | b7f62abb87dd200129fb2a781d008fc19d26115a (patch) | |
tree | 72222c024447ef001e23bb84d8bd5e599305c502 /test/jquery.js | |
parent | 71b2ac524e49c0d1cc4e5d7bd8fd9d5a1317a20b (diff) | |
download | jquery-b7f62abb87dd200129fb2a781d008fc19d26115a.tar.gz jquery-b7f62abb87dd200129fb2a781d008fc19d26115a.zip |
Ref 71b2ac52: Disallow 2.x bypass of environmental helper methods
Diffstat (limited to 'test/jquery.js')
-rw-r--r-- | test/jquery.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/jquery.js b/test/jquery.js index e94f55fe8..cad14f3b1 100644 --- a/test/jquery.js +++ b/test/jquery.js @@ -7,19 +7,6 @@ QUnit = window.QUnit || parent.QUnit, require = window.require || parent.require; - // Config parameter to force basic code paths - QUnit.config.urlConfig.push({ - id: "basic", - label: "Bypass optimizations", - tooltip: "Force use of the most basic code by disabling native querySelectorAll; contains; compareDocumentPosition; JSON.parse" - }); - if ( QUnit.urlParams.basic ) { - document.querySelectorAll = null; - document.documentElement.contains = null; - document.documentElement.compareDocumentPosition = null; - window.JSON = null; - } - // iFrames won't load AMD (the iframe tests synchronously expect jQuery to be there) QUnit.config.urlConfig.push({ id: "amd", |