root/LayoutTests/http/tests/misc/resources/random-no-store.php

/* [<][>][^][v][top][bottom][index][help] */
<?php
    header("Cache-Control: no-store");
?>
var p = document.createElement("p");
p.appendChild(document.createTextNode("<?php
    print rand();
?>
"));
document.body.appendChild(p);

/* [<][>][^][v][top][bottom][index][help] */