Commit 325f438a authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mshtml/tests: Fix typos in a few comments.

parent 5fd5618e
......@@ -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"); });
});
}
......
......@@ -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);
......
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