aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/event.js
diff options
context:
space:
mode:
authortimmywil <tim.willison@thisismedium.com>2011-04-12 19:32:18 -0400
committertimmywil <tim.willison@thisismedium.com>2011-04-12 19:32:18 -0400
commit69866fd2e5ba2456c2ae84a5ba711a1db2a25091 (patch)
tree5c0a9ed277ba1ac936b5ac9add3d5242f5966a33 /test/unit/event.js
parent6d49e84dafd8990221913944727e4f5dcaec078d (diff)
downloadjquery-69866fd2e5ba2456c2ae84a5ba711a1db2a25091.tar.gz
jquery-69866fd2e5ba2456c2ae84a5ba711a1db2a25091.zip
VML.type test was causing multiple test suite fails, fix attributes.js fail in IE6 where the val(String/Number) tests were interfering with the val(Function) tests
Diffstat (limited to 'test/unit/event.js')
-rw-r--r--test/unit/event.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/unit/event.js b/test/unit/event.js
index 491396f93..8ffbcd5b2 100644
--- a/test/unit/event.js
+++ b/test/unit/event.js
@@ -778,6 +778,8 @@ test("trigger() shortcuts", function() {
elem.remove();
// test that special handlers do not blow up with VML elements (#7071)
+ jQuery('<xml:namespace ns="urn:schemas-microsoft-com:vml" prefix="v" />').appendTo('head');
+ jQuery('<v:oval id="oval" style="width:100pt;height:75pt;" fillcolor="red"> </v:oval>').appendTo('#form');
jQuery("#oval").click().keydown();
});