summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/import-scripts-diff-resource-map-worker.js
blob: 0fdcb0fcf80ad7f0dffa284c5b77178bdad95ef6 (plain)
1
2
3
4
5
6
7
8
9
10
importScripts('/resources/testharness.js');

let echo1 = null;
let echo2 = null;
let arg1 = 'import-scripts-get.py?output=echo1&msg=test1';
let arg2 = 'import-scripts-get.py?output=echo2&msg=test2';

importScripts(arg1, arg2);
assert_equals(echo1, 'test1');
assert_equals(echo2, 'test2');