Skip to content

Instantly share code, notes, and snippets.

@nektro
Created February 27, 2018 21:34
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 nektro/8423f9eae45fb7b6095d3d935415f524 to your computer and use it in GitHub Desktop.
Save nektro/8423f9eae45fb7b6095d3d935415f524 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title>edge iframe memory test</title>
<style>
body {
margin: 0;
overflow-x: hidden;
}
iframe {
display: block;
width: 100%;
height: 100vh;
}
</style>
<script type="module">
const f = document.createElement('iframe');
f.setAttribute('src', 'index.html?'+(parseInt(location.search.substring(1))+1));
document.body.appendChild(f);
</script>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment