WorkerLocation.idl 474 B

12345678910111213
  1. // https://html.spec.whatwg.org/#workerlocation
  2. [Exposed=Worker]
  3. interface WorkerLocation {
  4. stringifier readonly attribute USVString href;
  5. readonly attribute USVString origin;
  6. readonly attribute USVString protocol;
  7. readonly attribute USVString host;
  8. readonly attribute USVString hostname;
  9. readonly attribute USVString port;
  10. readonly attribute USVString pathname;
  11. readonly attribute USVString search;
  12. readonly attribute USVString hash;
  13. };