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,15 @@
<html>
<head >
<title></title>
<script src="harness.js"></script>
</head>
<body>
<div name="foo"></div>
<script>
let nameList = document.getElementsByName("foo");
is_a(nameList, NodeList);
is_not_a(nameList, HTMLCollection);
finish();
</script>
</body>
</html>