From 8fba2bc6df423104c1a75122126fcd95504c8cac Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 13 Feb 2017 21:10:38 +0100 Subject: [PATCH] mshtml/tests: Added body event setters tests. Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- dlls/mshtml/tests/events.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/dlls/mshtml/tests/events.html b/dlls/mshtml/tests/events.html index 64e03f56ca9..8d5fcc363cd 100644 --- a/dlls/mshtml/tests/events.html +++ b/dlls/mshtml/tests/events.html @@ -157,6 +157,18 @@ function test_string_event_handler() { ok(string_handler_called === false, "string handler called"); } +function test_body_events() { + var f = function() {} + + document.body.onload = f; + ok(document.body.onload === f, "body.onload != f"); + ok(window.onload === f, "window.onload != f"); + + document.body.onfocus = f; + ok(document.body.onfocus === f, "body.onfocus != f"); + ok(window.onfocus === f, "window.onfocus != f"); +} + window.onload = function() { try { ok(inlscr_complete_called, "onreadystatechange not fired"); @@ -178,6 +190,7 @@ window.onload = function() { test_handler_this(); test_insert_script(); test_string_event_handler(); + test_body_events(); }catch(e) { ok(false, "Got an exception: " + e.message); } -- 2.11.4.GIT