servo/tests/wpt/web-platform-tests/navigation-timing/resources/performance-attribute-sender.html

13 lines
244 B
HTML

<!DOCTYPE HTML>
<html>
<body>
<script>
parent.postMessage([
performance.timing.connectStart,
performance.timing.navigationStart,
performance.timing.secureConnectionStart,
performance.timing.connectEnd
], '*');
</script>
</body>
</html>