aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-05-14 21:02:42 -0400
committerDave Methvin <dave.methvin@gmail.com>2012-05-15 23:29:20 -0400
commitc4e22ad8b5edd52ac78ec44bf7df8a7f37403623 (patch)
tree1208041730a0095ecc85062ceeb20dcbe9d1e9c7 /test/data
parentf76518e3931f7f2522a38bf37a7df24a620858fc (diff)
downloadjquery-c4e22ad8b5edd52ac78ec44bf7df8a7f37403623.tar.gz
jquery-c4e22ad8b5edd52ac78ec44bf7df8a7f37403623.zip
Fix #11721. Remove jQuery.boxModel, deprecate jQuery.support.boxModel.
This removes all internal uses of `jQuery.support.boxModel`. jQuery has never run unit tests with Quirks Mode and has not even feigned support for several years, so these remnants weren't doing much except giving false hope. For now, `jQuery.support.boxModel` continues to have a value indicating whether the W3C box model is *generally* in use, but be aware that this is easily overridden on an element-by-element basis by the `box-model` CSS property. So don't trust this value.
Diffstat (limited to 'test/data')
-rw-r--r--test/data/support/boxModelIE.html9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/data/support/boxModelIE.html b/test/data/support/boxModelIE.html
deleted file mode 100644
index 24e4c6100..000000000
--- a/test/data/support/boxModelIE.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<body>
- <script src="../include_js.php"></script>
- <script>
- jQuery(function() { window.parent.iframeCallback( document.compatMode, jQuery.support.boxModel ) });
- </script>
-</body>
-</html>