Commit 5dbf2726 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml/tests: Skip test_listener_order tests on IE7.

parent f6f5c966
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment