Commit 8979458f authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml/tests: Allow error when loading an image in events.html.

Fixes tests on win8. Signed-off-by: 's avatarJacek Caban <jacek@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 6c7db4ba
...@@ -323,6 +323,10 @@ img.onload = function() { ...@@ -323,6 +323,10 @@ img.onload = function() {
trace("img.onload"); trace("img.onload");
img_onload_called = true; img_onload_called = true;
} }
img.onerror = function() {
trace("img.onerror");
img_onload_called = true;
}
</script> </script>
</head> </head>
<body> <body>
......
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