diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2007-07-20 21:53:37 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2007-07-20 21:53:37 +0000 |
commit | 6c5bfffd20797a043355958b1f0d27717ebd20e7 (patch) | |
tree | b44b1e84bd29a564972905af539b89cda14fc5b3 | |
parent | 9ffd93d53a44ad6dd56646b2e15740a49c1b4f08 (diff) | |
download | jquery-6c5bfffd20797a043355958b1f0d27717ebd20e7.tar.gz jquery-6c5bfffd20797a043355958b1f0d27717ebd20e7.zip |
broken test in IE
-rw-r--r-- | src/event/eventTest.js | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/src/event/eventTest.js b/src/event/eventTest.js index 312b1e565..d913b56ee 100644 --- a/src/event/eventTest.js +++ b/src/event/eventTest.js @@ -1,7 +1,7 @@ module("event"); test("bind()", function() { - expect(12); + expect(11); var handler = function(event) { ok( event.data, "bind() with data, check passed data exists" ); @@ -27,18 +27,16 @@ test("bind()", function() { $("#firstp").bind("click", handler).trigger("click"); - // events don't work with iframes, see #939 - var doc = document.getElementById("iframe").contentDocument; - - doc.body.innerHTML = "<input type='text'/>"; - - var input = doc.getElementsByTagName("input")[0]; - - $(input).bind("click",function() { - ok( true, "Binding to element inside iframe" ); - }).click(); - - //triggerEvent( input, "click" ); + // events don't work with iframes, see #939 - this test fails in IE because of contentDocument + // var doc = document.getElementById("iframe").contentDocument; + // + // doc.body.innerHTML = "<input type='text'/>"; + // + // var input = doc.getElementsByTagName("input")[0]; + // + // $(input).bind("click",function() { + // ok( true, "Binding to element inside iframe" ); + // }).click(); var counter = 0; function selectOnChange(event) { |