1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<!DOCTYPE html>
<!--
This code is in the public domain.
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<script type="text/javascript" defer="defer" src="js_test.js"></script>
<style type="text/css">
body { color:gray; background-color: black; margin: 3em; }
</style>
<title>React strong stops</title>
</head>
<body>
<noscript>Sorry, you need to enable JavaScript to see this page.</noscript>
<p>Tab memory usage should be bounded and the step counter below
should not slow down.</p>
<p>Steps: <span id="count">0</span></p>
</body>
</html>
|