1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:48:12 +00:00

LibWeb/HTML: Implement text attribute in HTMLTitleElement

This commit is contained in:
Kemal Zebari 2023-12-01 18:59:08 -08:00 committed by Andreas Kling
parent d6df13af6a
commit 24b9d05ea8
5 changed files with 48 additions and 19 deletions

View file

@ -6,6 +6,6 @@ interface HTMLTitleElement : HTMLElement {
[HTMLConstructor] constructor();
// FIXME: [CEReactions] attribute DOMString text;
[CEReactions] attribute DOMString text;
};