Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/navigation-timing/nav2_test_attributes_values.html

Issue 2932003002: Implement nextHopProtocol in PerformanceResourceTiming and PerformanceNavigationTiming. (Closed)
Patch Set: Make ConnectionInfoString() return AtomicString Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/navigation-timing/nav2_test_attributes_values.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/navigation-timing/nav2_test_attributes_values.html b/third_party/WebKit/LayoutTests/external/wpt/navigation-timing/nav2_test_attributes_values.html
index 1ca4a1be2a6daf3d102b4f5f9e78e81a398dce52..a4b2f6af94376889e8f1990fc863e49b02b6d458 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/navigation-timing/nav2_test_attributes_values.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/navigation-timing/nav2_test_attributes_values.html
@@ -70,12 +70,13 @@
"Expected duration to be equal to loadEventEnd.");
assert_equals(entries[0].initiatorType, "navigation",
"Expected initiatorType to be: navigation.");
+ assert_equals(entries[0].nextHopProtocol, "http/1.1");
// This test may fail when response is from cach. Disable or clean cach before
// running this test.
assert_true(entries[0].transferSize > entries[0].encodedBodySize,
"Expected transferSize to be greater than encodedBodySize in uncached navigation.");
- assert_equals(entries[0].encodedBodySize, 4154);
- assert_equals(entries[0].decodedBodySize, 4154);
+ assert_equals(entries[0].encodedBodySize, 4229);
+ assert_equals(entries[0].decodedBodySize, 4229);
verifyTimingEventOrder(entries[0], navTiming2EventOrder1);
// When unloadEvent happens
if (entries[0]["unloadEventStart"] != 0) {

Powered by Google App Engine
This is Rietveld 408576698