blob: 1cacee5ccb5e3322e01c6e67b879d4c55f5d053f [file] [log] [blame]
importScripts("/resources/testharness.js");
test(function() {
var ran = false;
assert_throws_dom("SyntaxError", function() {
importScripts('data:text/javascript,ran=true','http://foo bar');
});
assert_false(ran, 'first argument to importScripts ran');
});
done();