diff options
author | Igor Pissolati <igo08an@hotmail.com> | 2022-04-12 13:19:35 -0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-12 19:42:16 +0200 |
commit | e2fa5c0cda654c82320066ecc8673cd005e8cfa3 (patch) | |
tree | 37f69b93cc6015c1c4bf1c501d0ac78914a58d4d /Userland/Libraries/LibWeb/DOM/Document.idl | |
parent | cf7a0821b5c79c8b998ae66d25b9c5489fe13bab (diff) | |
download | serenity-e2fa5c0cda654c82320066ecc8673cd005e8cfa3.zip |
LibWeb: Bring Document closer to spec
Diffstat (limited to 'Userland/Libraries/LibWeb/DOM/Document.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/Document.idl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/Document.idl b/Userland/Libraries/LibWeb/DOM/Document.idl index 2fda0dbc43..be711618b8 100644 --- a/Userland/Libraries/LibWeb/DOM/Document.idl +++ b/Userland/Libraries/LibWeb/DOM/Document.idl @@ -29,6 +29,9 @@ interface Document : Node { readonly attribute DOMImplementation implementation; + [ImplementedAs=url_string] readonly attribute USVString URL; + readonly attribute USVString documentURI; + readonly attribute DOMString characterSet; readonly attribute DOMString charset; readonly attribute DOMString inputEncoding; |