about summary refs log tree commit diff stats
path: root/src/html
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2024-02-13 12:29:05 +0100
committerbptato <nincsnevem662@gmail.com>2024-02-13 12:29:05 +0100
commit492a9e7cf80ae8e26b03602b5996f471c5edf4be (patch)
tree05c01438f4c8263648c66789b534e87391c51aca /src/html
parent955f5baca85203fbf21f9e734828d694a44777b1 (diff)
downloadchawan-492a9e7cf80ae8e26b03602b5996f471c5edf4be.tar.gz
buffer: more form fixes
Diffstat (limited to 'src/html')
-rw-r--r--src/html/dom.nim2
-rw-r--r--src/html/enums.nim1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/html/dom.nim b/src/html/dom.nim
index 70f907c5..cb0c41d8 100644
--- a/src/html/dom.nim
+++ b/src/html/dom.nim
@@ -286,7 +286,7 @@ type
     smethod*: string
     enctype*: string
     novalidate*: bool
-    constructingentrylist*: bool
+    constructingEntryList*: bool
     controls*: seq[FormAssociatedElement]
     relList {.jsget.}: DOMTokenList
 
diff --git a/src/html/enums.nim b/src/html/enums.nim
index 6d1a0771..4b4faa63 100644
--- a/src/html/enums.nim
+++ b/src/html/enums.nim
@@ -32,6 +32,7 @@ type
 
   AttrType* = enum
     atUnknown = ""
+    atAcceptCharset = "accept-charset"
     atAction = "action"
     atAlign = "align"
     atAlt = "alt"