haikuwebkit/PerformanceTests/Parser/html5-full-render.html

13 lines
409 B
HTML

<!DOCTYPE html>
<body>
<script src="../resources/runner.js"></script>
<script>
// Running from the onload callback just makes the UI nicer as it shows the logs before starting the test.
window.onload = function() {
PerfTestRunner.measurePageLoadTime({path: "resources/html5.html",
chunkSize: 500000 }); // 6.09mb / 500k = approx 13 chunks (thus 13 forced layouts/style resolves).
}
</script>
</body>