aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2013-04-07 21:11:09 -0400
committerRick Waldron <waldron.rick@gmail.com>2013-04-07 21:11:09 -0400
commitc44f07916d7ee2139c7aa0f9e633143b74433d98 (patch)
treeba98a5b7070e59d9b384d2cc8db751154f628dba
parentdca7681284731053124e6437c5bec58e030cc91d (diff)
downloadjquery-c44f07916d7ee2139c7aa0f9e633143b74433d98.tar.gz
jquery-c44f07916d7ee2139c7aa0f9e633143b74433d98.zip
Removes unnecessary "object/applet" element test from data tests.
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
-rw-r--r--test/unit/data.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/unit/data.js b/test/unit/data.js
index 2f9c25ed5..68426dc28 100644
--- a/test/unit/data.js
+++ b/test/unit/data.js
@@ -170,13 +170,6 @@ test("jQuery.data(object/flash)", 25, function() {
dataTests( flash );
});
-test("jQuery.data(object/applet)", 25, function() {
- var applet = document.createElement("object");
- applet.setAttribute( "classid", "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" );
-
- dataTests( applet );
-});
-
test("jQuery.data(comment)", 25, function() {
dataTests( document.createComment("") );
});