mshtml/tests: Fix typos in a few comments.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2018-01-04 15:57:22 +01:00 committed by Alexandre Julliard
parent 5fd5618e3d
commit 325f438a41
2 changed files with 2 additions and 2 deletions

View File

@ -266,7 +266,7 @@ function test_attach_in_attach() {
calls += "div.onclick,";
div.attachEvent("onclick", function() {
calls += "div.click,";
/* listener attached inside an other attached listener will not ve invoked */
/* listener attached inside another attached listener will not be invoked */
div.attachEvent("onclick", function () { ok(false, "unexpected call"); });
});
}

View File

@ -405,7 +405,7 @@ function test_init_event() {
ok(e.target === elem, "target != elem");
ok(e.defaultPrevented === false, "defaultPrevented = " + e.defaultPrevented);
/* initEvent no longer has effect except reseting defaultPrevented */
/* initEvent no longer has any effect except resetting defaultPrevented */
e.initEvent("test", true, false);
ok(e.type === "NewTest", "type = " + e.type);
ok(e.bubbles === false, "bubbles = " + e.bubbles);