mshtml/tests: Skip test_listener_order tests on IE7.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f6f5c96677
commit
5dbf2726fe
|
@ -235,6 +235,11 @@ function test_attach_event() {
|
|||
}
|
||||
|
||||
function test_listener_order() {
|
||||
if(!("documentMode" in document)) {
|
||||
win_skip("Skipping test_listener_order on too old IE");
|
||||
return;
|
||||
}
|
||||
|
||||
var div = document.createElement("div");
|
||||
document.body.appendChild(div);
|
||||
|
||||
|
|
Loading…
Reference in New Issue