File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -562,6 +562,15 @@ ins_ = createElement_ "ins"
562562ins' :: forall a h . ToHtml' a h
563563ins' = createElement' " ins"
564564
565+ kbd :: forall a b h . ToHtml a b h
566+ kbd = createElement " kbd"
567+
568+ kbd_ :: forall b h . ToHtml_ b h
569+ kbd_ = createElement_ " kbd"
570+
571+ kbd' :: forall a h . ToHtml' a h
572+ kbd' = createElement' " kbd"
573+
565574keygen :: forall a b h . ToHtml a b h
566575keygen = createElement " keygen"
567576
Original file line number Diff line number Diff line change @@ -89,9 +89,9 @@ main = AF.launchAff_ $ TSR.runSpec [consoleReporter] do
8989 html2' <- liftEffect $ FRS .render html2
9090 TSA .shouldEqual """ <a id="test">TEST</a>""" html2'
9191
92- let html3 = HE .a " test" [HE .text " TEST" ]
92+ let html3 = HE .kbd " test" [HE .text " TEST" ]
9393 html3' <- liftEffect $ FRS .render html3
94- TSA .shouldEqual """ <a id="test">TEST</a >""" html3'
94+ TSA .shouldEqual """ <kbd id="test">TEST</kbd >""" html3'
9595
9696 let html4 = HE .a " test" $ HE .text " TEST"
9797 html4' <- liftEffect $ FRS .render html4
You can’t perform that action at this time.
0 commit comments