Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(285)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/domurl/resources/testharness-extras.js

Issue 1442643008: Implement 'URLSearchParams' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 Extending the W3C testharness.js with locally useful functionality.
3 */
4
5 function assert_type_error(f, msg) {
6 assert_throws(TypeError(), f, msg);
7 }
8
9 function assert_syntax_error(f, msg) {
philipj_slow 2015/11/16 12:47:08 This is never used and assert_type_error() is only
Mike West 2015/11/17 10:23:25 ok.
10 assert_throws(SyntaxError(), f, msg);
11 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698