mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 18:24:45 -05:00
15 lines
641 B
Text
15 lines
641 B
Text
|
// https://html.spec.whatwg.org/multipage/links.html#htmlhyperlinkelementutils
|
||
|
interface mixin HTMLHyperlinkElementUtils {
|
||
|
[CEReactions] stringifier attribute USVString href;
|
||
|
readonly attribute USVString origin;
|
||
|
[CEReactions] attribute USVString protocol;
|
||
|
[CEReactions] attribute USVString username;
|
||
|
[CEReactions] attribute USVString password;
|
||
|
[CEReactions] attribute USVString host;
|
||
|
[CEReactions] attribute USVString hostname;
|
||
|
[CEReactions] attribute USVString port;
|
||
|
[CEReactions] attribute USVString pathname;
|
||
|
[CEReactions] attribute USVString search;
|
||
|
[CEReactions] attribute USVString hash;
|
||
|
};
|