about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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 =