mirror of
https://github.com/servo/servo
synced 2026-05-01 03:47:53 +02:00
10 lines
253 B
HTML
10 lines
253 B
HTML
<!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> |