mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
Automatic update from web-platform-tests [Navigation timing] Add secure connection start reuse test During the review of https://github.com/w3c/navigation-timing/pull/106 it was noted that secureConnectionStart's behavior with regards to connection reuse and navigation timing is not well-tested. This CL adds such a test. Change-Id: I91d7cbfe4f1ee58a72b4a647a38bd58d4ffca693 Bug: 977519 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1702022 Commit-Queue: Yoav Weiss <yoavweiss@chromium.org> Reviewed-by: Nicolás Peña Moreno <npm@chromium.org> Cr-Commit-Position: refs/heads/master@{#677521} -- wpt-commits: 391c8f12e270cf0cadb26dc06b5d9984afe34a4c wpt-pr: 17832
15 lines
485 B
HTML
15 lines
485 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Navigation Timing secureconnectionstart reuse</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
const t = async_test("Test that secureConnectionStart value is as expected when reused");
|
|
window.addEventListener("message", t.step_func_done(e => {
|
|
assert_equals(e.data, "PASS");
|
|
}));
|
|
</script>
|
|
<iframe src="resources/secure-connection-interim.html">
|
|
|