Add unit test for HtmlHrElement web_sys binding (#591)

This commit is contained in:
Tyler Wilcock
2018-07-30 20:25:48 -05:00
committed by Alex Crichton
parent 05d3b934c8
commit c971620039
4 changed files with 31 additions and 2 deletions

View File

@ -26,6 +26,10 @@ export function new_head() {
return document.createElement("head");
}
export function new_hr() {
return document.createElement("hr");
}
export function new_html() {
return document.createElement("html");
}