Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions buildSrc/src/main/resources/html_5.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1217,6 +1217,7 @@
<xsd:complexType>
<xsd:attributeGroup ref="commonAttributeGroup"/>
<xsd:attribute name="src" type="xsd:anyURI"/>
<xsd:attribute name="srcset" type="xsd:anyURI"/>
<xsd:attribute name="type"/>
<xsd:attribute name="media"/>
</xsd:complexType>
Expand Down
4 changes: 4 additions & 0 deletions src/commonMain/kotlin/generated/gen-tags-s.kt
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,10 @@ open class SOURCE(initialAttributes : Map<String, String>, override val consumer
get() = attributeStringString.get(this, "src")
set(newValue) {attributeStringString.set(this, "src", newValue)}

var srcset : String
get() = attributeStringString.get(this, "srcset")
set(newValue) {attributeStringString.set(this, "srcset", newValue)}

var type : String
get() = attributeStringString.get(this, "type")
set(newValue) {attributeStringString.set(this, "type", newValue)}
Expand Down