blob: 9df035cff8cf446f4e6b94aaffc63bea21ee7b9a [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../js-test-resources/js-test.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script>
description("This test checks that Web Timing reports redirectCount correctly and has reasonable values for redirectStart and redirectCount.");
window.performance = window.performance || {};
var navigation = performance.navigation || {};
var timing = performance.timing || {};
shouldBeGreaterThanOrEqual("timing.redirectStart", "timing.navigationStart");
shouldBeGreaterThanOrEqual("timing.redirectEnd", "timing.redirectStart");
shouldBe("navigation.redirectCount", "1");
</script>
</body>
</html>