mshtml/tests: Added body event setters tests.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9e779666fa
commit
8fba2bc6df
|
@ -157,6 +157,18 @@ function test_string_event_handler() {
|
||||||
ok(string_handler_called === false, "string handler called");
|
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() {
|
window.onload = function() {
|
||||||
try {
|
try {
|
||||||
ok(inlscr_complete_called, "onreadystatechange not fired");
|
ok(inlscr_complete_called, "onreadystatechange not fired");
|
||||||
|
@ -178,6 +190,7 @@ window.onload = function() {
|
||||||
test_handler_this();
|
test_handler_this();
|
||||||
test_insert_script();
|
test_insert_script();
|
||||||
test_string_event_handler();
|
test_string_event_handler();
|
||||||
|
test_body_events();
|
||||||
}catch(e) {
|
}catch(e) {
|
||||||
ok(false, "Got an exception: " + e.message);
|
ok(false, "Got an exception: " + e.message);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue