From 81c778b2cad268a6208544ae32d2ad5b023051a0 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Wed, 7 Sep 2011 11:30:22 -0400 Subject: Fix #10208. Check for `button` as well as `input` when performing the #7071 VML crash workaround for IE special-events submit code. --- test/unit/event.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test/unit') diff --git a/test/unit/event.js b/test/unit/event.js index 4e475da06..c69ba8339 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -1633,7 +1633,7 @@ test("live with change", function(){ }); test("live with submit", function() { - expect(5); + expect(7); var count1 = 0, count2 = 0; @@ -1659,6 +1659,10 @@ test("live with submit", function() { equals( count1, 2, "Verify form submit." ); equals( count2, 2, "Verify body submit." ); + jQuery("#testForm button[name=sub4]")[0].click(); + equals( count1, 3, "Verify form submit." ); + equals( count2, 3, "Verify body submit." ); + jQuery("#testForm").die("submit"); jQuery("#testForm input[name=sub1]").die("click"); jQuery("body").die("submit"); -- cgit v1.2.3