diff options
Diffstat (limited to 'plugins/base/base-test-utils/src/main/kotlin')
-rw-r--r-- | plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt b/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt index 6d308341..14d4d843 100644 --- a/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt +++ b/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt @@ -35,6 +35,7 @@ class Dl(vararg matchers: Any) : Tag("dl", *matchers) class Dt(vararg matchers: Any) : Tag("dt", *matchers) class Dd(vararg matchers: Any) : Tag("dd", *matchers) class Var(vararg matchers: Any) : Tag("var", *matchers) +class U(vararg matchers: Any) : Tag("u", *matchers) object Wbr : Tag("wbr") object Br : Tag("br") |