Skip to content

Commit

Permalink
Minor changes to some test message strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowbarker committed Mar 21, 2014
1 parent 7574f43 commit 8d5ae8d
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -17,7 +17,7 @@
assert_true(e.isTrusted);
assert_true(e.bubbles);
assert_true(e.cancelable);
}, "'before' event is trusted, bubbles and is cancelable");
}, "'beforescriptexecute' event is trusted, bubbles and is cancelable");
};

var after = function(e) {
Expand All @@ -26,7 +26,7 @@
assert_true(e.isTrusted);
assert_true(e.bubbles);
assert_false(e.cancelable);
}, "'after' event is trusted, bubbles and doesn't cancelable");
}, "'afterscriptexecute' event is trusted, bubbles and isn't cancelable");
};

document.body.onload = t1.step_func_done(function(){
Expand Down

0 comments on commit 8d5ae8d

Please sign in to comment.