Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <script> | |
| 3 function refreshOpener() { | |
| 4 window.opener.location.reload(); | |
| 5 // Same behavior: | |
| 6 // window.opener.location.href = window.opener.location.href; | |
| 7 return false; | |
| 8 } | |
| 9 | |
| 10 function onLoad() { | |
| 11 window.setTimeout(refreshOpener, 100); | |
| 12 } | |
| 13 | |
| 14 window.onload = onLoad; | |
| 15 </script> | |
| 16 <body> | |
| 17 <p>$UA$</p> | |
| 18 <a href="#" onclick="return refreshOpener();">Refresh Opener</a> | |
| 19 </body> | |
| 20 </html> | |
| OLD | NEW |