mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Move content tests to src/test/content for consistency
This commit is contained in:
parent
2238d81b53
commit
6f76244377
60 changed files with 2 additions and 2 deletions
13
src/test/content/test_global.html
Normal file
13
src/test/content/test_global.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue