summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/old-tests/webdriver/navigation/res/refreshPageDynamic.html
blob: bedd20c356561faf8b70d9c55a01f1b48b5bc5f2 (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<meta charset="utf-8">
<body id="body">
This is a dynamic page. It will always have different content if refreshed.
<div id="dynamic"></div>
</body>
</html>
<script>
document.getElementById('dynamic').innerHTML = Math.random();
</script>