about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2025-01-10 21:25:26 +0100
committerbptato <nincsnevem662@gmail.com>2025-01-10 21:28:58 +0100
commit9144ca1baf6d41f8547a1edc76c6f59a1af0f397 (patch)
tree89c26fb30f3485d8993ddf228285f3b0479dafca
parent79b46e28b1518f59cc34c4907fadaff7e8cc4c54 (diff)
downloadchawan-9144ca1baf6d41f8547a1edc76c6f59a1af0f397.tar.gz
dom: reflect title
-rw-r--r--src/html/dom.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/html/dom.nim b/src/html/dom.nim
index fe500fd1..17f32890 100644
--- a/src/html/dom.nim
+++ b/src/html/dom.nim
@@ -1077,9 +1077,10 @@ const ReflectTable0 = [
   makeb("ismap", "isMap", TAG_IMG),
   makeb("disabled", TAG_LINK),
   # "super-global" attributes
-  makes("slot", AllTagTypes),
   makes("class", "className", AllTagTypes),
   makef("onclick", AllTagTypes, "click"),
+  makes("slot", AllTagTypes),
+  makes("title", AllTagTypes),
 ]
 
 func document*(node: Node): Document =