mirror of
https://github.com/servo/servo
synced 2026-05-02 12:26:06 +02:00
9 lines
235 B
JavaScript
9 lines
235 B
JavaScript
importScripts("/resources/testharness.js");
|
|
|
|
test(function() {
|
|
assert_false("searchParams" in self.location,
|
|
"location object should not have a searchParams attribute");
|
|
}, "searchParams on location object");
|
|
|
|
done();
|