Serenity Operating System
at master 14 lines 641 B view raw
1// https://html.spec.whatwg.org/multipage/links.html#htmlhyperlinkelementutils 2interface mixin HTMLHyperlinkElementUtils { 3 [CEReactions] stringifier attribute USVString href; 4 readonly attribute USVString origin; 5 [CEReactions] attribute USVString protocol; 6 [CEReactions] attribute USVString username; 7 [CEReactions] attribute USVString password; 8 [CEReactions] attribute USVString host; 9 [CEReactions] attribute USVString hostname; 10 [CEReactions] attribute USVString port; 11 [CEReactions] attribute USVString pathname; 12 [CEReactions] attribute USVString search; 13 [CEReactions] attribute USVString hash; 14};