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,13 @@
<html>
<head>
<script src="harness.js"></script>
<script>
is(window, window.window);
is(window, this);
for (var key in this) {
is(this[key], window[key]);
}
finish();
</script>
</head>
</html>