URL.idl 543 B

123456789101112131415161718
  1. interface URL {
  2. constructor(USVString url, optional USVString base);
  3. stringifier attribute USVString href;
  4. readonly attribute USVString origin;
  5. attribute USVString protocol;
  6. attribute USVString username;
  7. attribute USVString password;
  8. attribute USVString host;
  9. attribute USVString hostname;
  10. attribute USVString port;
  11. attribute USVString pathname;
  12. attribute USVString search;
  13. [SameObject] readonly attribute URLSearchParams searchParams;
  14. attribute USVString hash;
  15. USVString toJSON();
  16. };