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:
Jacek Caban 2018-01-10 22:59:55 +01:00 committed by Alexandre Julliard
parent f6f5c96677
commit 5dbf2726fe
1 changed files with 5 additions and 0 deletions

View File

@ -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);