blob: 2c68e2d2d3dfdb24324c6c2d28e4c2f2325b2d62 [file] [log] [blame]
<?php
header("Content-Type: text/javascript");
sleep($_GET["delay"]);
echo "log('" . $_GET["msg"] . "');\n";
if ($_GET["done"] == "1") {
echo "if (window.testRunner)\n";
echo " testRunner.notifyDone();\n";
}
?>