blob: 464ca0c3215ef7f9284d4cb26cfc2943ef24d8ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
[Exposed=Worker]
interface WorkerLocation {
stringifier readonly attribute USVString href;
readonly attribute USVString origin;
readonly attribute USVString protocol;
readonly attribute USVString host;
readonly attribute USVString hostname;
readonly attribute USVString port;
readonly attribute USVString pathname;
readonly attribute USVString search;
readonly attribute USVString hash;
};
|