blob: 6566ceb043061d263880b031bae54c8e8146e1ae [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../../../resources/js-test.js"></script>
</head>
<body>
<script>
function checkForLeftoverProperties(string, object)
{
var array = new Array;
for (var property in object) {
array.push(property);
}
array.sort();
for (var i = 0; i < array.length; ++i) {
var property = array[i];
shouldBeFalse(string + '.' + property + ' == "LEFTOVER"');
}
}
checkForLeftoverProperties("history", window.history);
checkForLeftoverProperties("location", location);
checkForLeftoverProperties("locationbar", locationbar);
checkForLeftoverProperties("menubar", menubar);
checkForLeftoverProperties("personalbar", personalbar);
checkForLeftoverProperties("screen", screen);
checkForLeftoverProperties("scrollbars", scrollbars);
checkForLeftoverProperties("statusbar", statusbar);
checkForLeftoverProperties("toolbar", toolbar);
shouldBeUndefined('window.event');
</script>
<script>
if (window.testRunner)
testRunner.notifyDone();
</script>
</body>
</html>