LibWeb: Add HTMLElement wrapper

Expose the "title" attribute just to expose something. :^)
This commit is contained in:
Andreas Kling 2020-06-21 14:35:00 +02:00
commit 1914f52371
Notes: sideshowbarker 2024-07-19 05:29:36 +09:00
10 changed files with 36 additions and 14 deletions

View file

@ -0,0 +1,5 @@
interface HTMLElement : Element {
attribute DOMString title;
}