Move content tests to src/test/content for consistency

This commit is contained in:
Keegan McAllister 2014-03-07 15:47:42 -08:00
parent 2238d81b53
commit 6f76244377
60 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,12 @@
<html>
<head>
<script src="harness.js"></script>
<script>
is_function(DOMParser, "DOMParser");
let parser = new DOMParser();
is_a(parser, DOMParser);
is_a(parser.parseFromString("", "text/html"), Document);
finish();
</script>
</head>
</html>