root/LayoutTests/http/tests/navigation/resources/post-with-modifier.php

/* [<][>][^][v][top][bottom][index][help] */
<script>
if (window.opener) {
    var data = {
        'method': '<?=$_SERVER['REQUEST_METHOD'] ?>',
        'formValue': '<?= $_POST['a'] ?>',
    };
    window.opener.postMessage(data, '*');
} else {
    document.writeln('FAIL');
    testRunner.notifyDone();
}
</script>

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