1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 19:57:45 +00:00

LibWeb: Add HTMLElement.lang (and make HTMLElement.title reflecting)

This commit is contained in:
Andreas Kling 2020-07-24 13:16:11 +02:00
parent ea451cea6a
commit cb35a8ea83
3 changed files with 23 additions and 22 deletions

View file

@ -1,5 +1,6 @@
interface HTMLElement : Element {
attribute DOMString title;
[Reflect] attribute DOMString title;
[Reflect] attribute DOMString lang;
}