2014-10-23 10:47:00 +00:00
|
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
|
|
<!doctype html>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"/>
|
2015-02-25 22:40:20 +00:00
|
|
|
<title>Performance test page</title>
|
2014-10-23 10:47:00 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript">
|
2015-02-25 22:40:20 +00:00
|
|
|
var x = 1;
|
2014-10-23 10:47:00 +00:00
|
|
|
function test() {
|
2015-02-25 22:40:20 +00:00
|
|
|
document.body.style.borderTop = x + "px solid red";
|
|
|
|
x = 1^x;
|
|
|
|
document.body.innerHeight; // flush pending reflows
|
2014-10-23 10:47:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Prevent this script from being garbage collected.
|
|
|
|
window.setInterval(test, 1);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|