mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 10:37:17 +02:00
LibWeb: Extract the HTMLHyperlinkElementUtils IDL mixin
Also added FIXMEs for some missing methods while I was at it.
This commit is contained in:
Notes:
sideshowbarker
2024-07-17 08:30:44 +09:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/SerenityOS/serenity/commit/8d2d315858 Pull-request: https://github.com/SerenityOS/serenity/pull/14716 Reviewed-by: https://github.com/kennethmyhra Reviewed-by: https://github.com/linusg
14
Userland/Libraries/LibWeb/HTML/HTMLHyperlinkElementUtils.idl
Normal file
14
Userland/Libraries/LibWeb/HTML/HTMLHyperlinkElementUtils.idl
Normal file
@@ -0,0 +1,14 @@
|
||||
// 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;
|
||||
};
|
||||
Reference in New Issue
Block a user