blob: 493690d039f19fb66e9ec7cc506703932e0b9719 [file] [log] [blame]
<!DOCTYPE html>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" type="text/css" href="resources/animation.css">
<link rel="stylesheet" type="text/css" href="resources/tablet.css">
<script src="resources/perf_test_helper.js"></script>
<container id="container"></container>
<script>
var N = PerfTestHelper.getN(1000);
var duration = 1000;
function startAnimation() {
var target = document.createElement('target');
container.appendChild(target);
}
function startAllAnimations() {
container.textContent = '';
for (var i = 0; i < N; i++) {
startAnimation();
}
}
startAllAnimations();
setInterval(startAllAnimations, duration);
PerfTestHelper.signalReady();
</script>