1
0
Fork 0
firefox/dom/html/test/file_refresh_after_document_write.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
231 B
HTML

<html>
<head>
<title></title>
</head>
<script>
function write_and_refresh(){
document.write("This could be anything");
location.reload();
}
</script>
<body>
<button id='test_btn' onclick='write_and_refresh()'>
</body>
</html>