https://github.com/web-platform-tests/wpt
Revision 4091ab0f7cbcb304cdd5b1d1c30264b052359b38 authored by Florian Rivoal on 29 March 2018, 16:46:52 UTC, committed by L. David Baron on 29 March 2018, 16:46:52 UTC
Corresponding to the spec changes decided in https://github.com/w3c/csswg-drafts/issues/2000
1 parent afcd47b
Raw File
Tip revision: 4091ab0f7cbcb304cdd5b1d1c30264b052359b38 authored by Florian Rivoal on 29 March 2018, 16:46:52 UTC
[css-overflow-3] test the flow-relative overflow properties (#10233)
Tip revision: 4091ab0
url.idl
[Constructor(USVString url, optional USVString base),
 Exposed=(Window,Worker),
 LegacyWindowAlias=webkitURL]
interface URL {
  stringifier attribute USVString href;
  readonly attribute USVString origin;
           attribute USVString protocol;
           attribute USVString username;
           attribute USVString password;
           attribute USVString host;
           attribute USVString hostname;
           attribute USVString port;
           attribute USVString pathname;
           attribute USVString search;
  [SameObject] readonly attribute URLSearchParams searchParams;
           attribute USVString hash;

  USVString toJSON();
};

[Constructor(optional (sequence<sequence<USVString>> or record<USVString, USVString> or USVString) init = ""),
 Exposed=(Window,Worker)]
interface URLSearchParams {
  void append(USVString name, USVString value);
  void delete(USVString name);
  USVString? get(USVString name);
  sequence<USVString> getAll(USVString name);
  boolean has(USVString name);
  void set(USVString name, USVString value);

  void sort();

  iterable<USVString, USVString>;
  stringifier;
};
back to top