| Index: third_party/WebKit/LayoutTests/http/tests/w3c/webperf/approved/navigation-timing/html/nav2_test_attributes_values.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/w3c/webperf/approved/navigation-timing/html/nav2_test_attributes_values.html b/third_party/WebKit/LayoutTests/http/tests/w3c/webperf/approved/navigation-timing/html/nav2_test_attributes_values.html
|
| index b5b6f8dcfd9cfbaf802d549126ee5950a2fc3186..22e8e264056c7dc6b42c9b237d803cee075628e9 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/w3c/webperf/approved/navigation-timing/html/nav2_test_attributes_values.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/w3c/webperf/approved/navigation-timing/html/nav2_test_attributes_values.html
|
| @@ -69,14 +69,14 @@
|
| "Expected startTime to be: 0.");
|
| assert_equals(entries[0].duration, entries[0].loadEventEnd,
|
| "Expected duration to be equal to loadEventEnd.");
|
| - assert_equals(entries[0].initiatorType, "",
|
| - "Expected initiatorType to be an empty string.");
|
| + assert_equals(entries[0].initiatorType, "navigation",
|
| + "Expected initiatorType to be equal to navigation.");
|
| // 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, 0);
|
| - assert_equals(entries[0].decodedBodySize, 0);
|
| + assert_equals(entries[0].encodedBodySize, 4148);
|
| + assert_equals(entries[0].decodedBodySize, 4148);
|
| verifyTimingEventOrder(entries[0], navTiming2EventOrder1);
|
| // When unloadEvent happens
|
| if (entries[0]["unloadEventStart"] != 0) {
|
|
|