WorkerLocation.idl 426 B

123456789101112
  1. [Exposed=Worker]
  2. interface WorkerLocation {
  3. stringifier readonly attribute USVString href;
  4. readonly attribute USVString origin;
  5. readonly attribute USVString protocol;
  6. readonly attribute USVString host;
  7. readonly attribute USVString hostname;
  8. readonly attribute USVString port;
  9. readonly attribute USVString pathname;
  10. readonly attribute USVString search;
  11. readonly attribute USVString hash;
  12. };