Skip to content

Commit 0806f7c

Browse files
committed
add selectedcontent element
not implementing any logic yet because it's still being discussed whatwg/html#11653
1 parent 7811944 commit 0806f7c

7 files changed

Lines changed: 146 additions & 125 deletions

File tree

python/gumbo/gumboc_tags.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
"INPUT",
114114
"BUTTON",
115115
"SELECT",
116+
"SELECTEDCONTENT",
116117
"DATALIST",
117118
"OPTGROUP",
118119
"OPTION",

src/tag.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ label
111111
input
112112
button
113113
select
114+
selectedcontent
114115
datalist
115116
optgroup
116117
option

src/tag_enum.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ GUMBO_TAG_LABEL,
112112
GUMBO_TAG_INPUT,
113113
GUMBO_TAG_BUTTON,
114114
GUMBO_TAG_SELECT,
115+
GUMBO_TAG_SELECTEDCONTENT,
115116
GUMBO_TAG_DATALIST,
116117
GUMBO_TAG_OPTGROUP,
117118
GUMBO_TAG_OPTION,

0 commit comments

Comments
 (0)