Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / cache / reload-main-resource.php
blob14cd75030b6a2730fdfdf1f669fac3165ba4a831
1 <?php
2 require_once '../resources/portabilityLayer.php';
3 clearstatcache();
4 if (file_exists(sys_get_temp_dir() . "/reload-main-resource.tmp"))
5 unlink(sys_get_temp_dir() . "/reload-main-resource.tmp");
6 ?>
8 <body>
9 <div id="result"></div>
10 <script>
11 if (window.testRunner) {
12 testRunner.dumpAsText();
13 testRunner.waitUntilDone();
16 function reloadIframe() {
17 window.frames[0].location.reload();
20 function finish() {
21 document.getElementById("result").innerText = "PASS";
22 if (window.testRunner)
23 testRunner.notifyDone();
25 </script>
26 <iframe src="resources/reload-main-resource-iframe.php" onload="reloadIframe();"></iframe>
27 </body>