More properties

This commit is contained in:
2020-03-18 19:27:17 +01:00
parent 5b557c8535
commit c40616e691
20 changed files with 564 additions and 392 deletions

View File

@@ -5,11 +5,11 @@ class BoxDecorationBreak(
): CssProperty(value) {
companion object {
fun slice() = BorderWidth("slice")
fun clone() = BorderWidth("clone")
fun initial() = BorderWidth("initial")
fun inherit() = BorderWidth("inherit")
fun unset() = BorderWidth("unset")
fun slice() = BoxDecorationBreak("slice")
fun clone() = BoxDecorationBreak("clone")
fun initial() = BoxDecorationBreak("initial")
fun inherit() = BoxDecorationBreak("inherit")
fun unset() = BoxDecorationBreak("unset")
}
}