summaryrefslogtreecommitdiffstats
path: root/LayoutTests/http/tests/appcache/resources/subframe-1.html
blob: 629c030bfad645070358c30d1f754009550681d3 (plain)
1
2
3
4
5
6
7
<script>
var req = new XMLHttpRequest;
req.open("GET", "simple.txt", false);
req.send(null);
if (req.responseText.length > 0)
    parent.postMessage("allDone", "*");
</script>