diff --git a/resource-timing/resource_connection_reuse.html b/resource-timing/resource_connection_reuse.html index d2bcab912ed79a..74c7c10821e899 100644 --- a/resource-timing/resource_connection_reuse.html +++ b/resource-timing/resource_connection_reuse.html @@ -41,6 +41,10 @@ const entry = entries[1]; test_equals(entry.fetchStart, entry.connectStart, 'connectStart and fetchStart should be the same'); test_equals(entry.fetchStart, entry.connectEnd, 'connectEnd and fetchStart should be the same'); + test_equals(entry.fetchStart, entry.secureConnectionStart, 'secureConnectStart and fetchStart should be the same'); + test_equals(entry.fetchStart, entry.domainLookupStart, 'domainLookupStart and fetchStart should be the same') + test_equals(entry.fetchStart, entry.domainLookupEnd, 'domainLookupEnd and fetchStart should be the same') + } done();