Line | |
---|
1 | define(["dojo/sniff", "doh/main", "require"], function(has, doh, require){ |
---|
2 | if(doh.isBrowser){ |
---|
3 | doh.register("tests._base.html", require.toUrl("./html.html"), 15000); |
---|
4 | doh.register("tests._base.html_id", require.toUrl("./html_id.html"), 15000); |
---|
5 | doh.register("tests._base.html_element", require.toUrl("./html_element.html"), 15000); |
---|
6 | doh.register("tests._base.html_rtl", require.toUrl("./html_rtl.html"), 15000); |
---|
7 | // IE9+ cannot handle loading quirks mode documents inside the test runner, see #14321 |
---|
8 | has("ie") >= 9 || doh.register("tests._base.html_quirks", require.toUrl("./html_quirks.html"), 15000); |
---|
9 | doh.register("tests._base.html_box", require.toUrl("./html_box.html"), 35000); |
---|
10 | has("ie") >= 9 || doh.register("tests._base.html_box_quirks", require.toUrl("./html_box_quirks.html"), 35000); |
---|
11 | doh.register("tests._base.html_isBodyLtr", require.toUrl("./html_isBodyLtr.html"), 35000); |
---|
12 | doh.register("tests._base.html_docScroll", require.toUrl("./html_docScroll.html"), 35000); |
---|
13 | } |
---|
14 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.