1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:57:35 +00:00

LibWeb: Bring Document closer to spec

This commit is contained in:
Igor Pissolati 2022-04-12 13:19:35 -03:00 committed by Andreas Kling
parent cf7a0821b5
commit e2fa5c0cda
2 changed files with 6 additions and 0 deletions

View file

@ -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;