diff options
author | bptato <nincsnevem662@gmail.com> | 2024-02-13 12:29:05 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-02-13 12:29:05 +0100 |
commit | 492a9e7cf80ae8e26b03602b5996f471c5edf4be (patch) | |
tree | 05c01438f4c8263648c66789b534e87391c51aca /src/html | |
parent | 955f5baca85203fbf21f9e734828d694a44777b1 (diff) | |
download | chawan-492a9e7cf80ae8e26b03602b5996f471c5edf4be.tar.gz |
buffer: more form fixes
Diffstat (limited to 'src/html')
-rw-r--r-- | src/html/dom.nim | 2 | ||||
-rw-r--r-- | src/html/enums.nim | 1 |
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" |