Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Eriko Kurimoto committed Mar 19, 2020
1 parent 05cdfbc commit 8a4c545
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion workers/modules/shared-worker-parse-error-failure.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
assert_equals(args.a.constructor, Event);
assert_true('message' in args.a, 'Event.message');
assert_equals(typeof args.a.message, 'string', 'Event.message');
assert_equals(args.a.filename, location.href + '/resources/syntax-error.js');
assert_equals(args.a.filename, location.href + '/resources/syntax-error.js'),
'Event.filename');
assert_equals(args.a.lineno, 1, 'Event.lineno');
assert_equals(args.b, undefined, 'unexpected second argument to onerror');
assert_equals(args.c, undefined, 'unexpected third argument to onerror');
Expand Down
3 changes: 2 additions & 1 deletion workers/shared-worker-parse-error-failure.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
assert_equals(args.a.constructor, Event);
assert_true('message' in args.a, 'Event.message');
assert_equals(typeof args.a.message, 'string', 'Event.message');
assert_equals(args.a.filename, location.href + '/resources/syntax-error.js');
assert_equals(args.a.filename, location.href + '/resources/syntax-error.js',
'Event.filename');
assert_equals(args.a.lineno, 1, 'Event.lineno');
assert_equals(args.b, undefined, 'unexpected second argument to onerror');
assert_equals(args.c, undefined, 'unexpected third argument to onerror');
Expand Down

0 comments on commit 8a4c545

Please sign in to comment.