blob: 28e5baf4490c9a9212a9da8a26efd33d584ec0b1 [file] [log] [blame]
<html>
<head>
<script>
function log(msg) {
var element = document.createElement("div");
element.textContent = msg;
document.body.appendChild(element);
document.body.appendChild(document.createElement("br"));
}
function runTest() {
if (!window.testRunner) {
log("This test requires the LayoutTestController");
return;
}
testRunner.dumpAsText();
// Make timers run no more often than twice a second.
internals.settings.setMinimumTimerInterval(0.5);
// Part 2 of this test (which will likely be executed immediately
// after this one by the harness) verifies that the minimum timer
// interval is reset between tests.
log("PASS");
}
</script>
</head>
<body onload="runTest()">
</body>
</html>