mirror of
https://github.com/denoland/deno.git
synced 2025-01-22 23:19:55 -05:00
c75f92c4e2
* fix: align DOMException API to the spec * test: fix test case 070_location * test(DOMException): disable "does not inherit from Error: class-side" test of WPT * test: remove test cases in deno codebase * docs: add note about skipped test
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
// TODO(nayeemrmn): Add `Location` and `location` to `dlint`'s globals.
|
|
// deno-lint-ignore-file no-undef
|
|
console.log(Location);
|
|
console.log(Location.prototype);
|
|
console.log(location);
|
|
try {
|
|
location.hostname = "bar";
|
|
} catch (error) {
|
|
console.log(error.toString());
|
|
}
|