Skip to content

Instantly share code, notes, and snippets.

@cferdinandi
Created August 6, 2019 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cferdinandi/820ca7f5b92889234e91e8944a93cd2d to your computer and use it in GitHub Desktop.
Save cferdinandi/820ca7f5b92889234e91e8944a93cd2d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>1 | Safari Bug</title>
<style type="text/css">
body {
margin: 0 auto;
max-width: 40em;
width: 88%;
}
</style>
</head>
<body>
<p id="app"></p>
<p><a href="2.html">Next Page &rarr;</a></p>
<script>
var app = document.querySelector('#app');
app.textContent = new Date().toLocaleTimeString();
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>2 | Safari Bug</title>
<style type="text/css">
body {
margin: 0 auto;
max-width: 40em;
width: 88%;
}
</style>
</head>
<body>
<p id="app"></p>
<script>
var app = document.querySelector('#app');
app.textContent = new Date().toLocaleTimeString();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment