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

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

Issue 2675973004: Update NT2 name to be the requested URL instead of 'document' (Closed)
Patch Set: fix failing wpt tests (imported after creation of this CL), and delete a redundant, old test Created 3 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/navigation-timing/nav2_test_instance_accessors.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 cd335233696ef7a6798c089fe8553f8bed60a7d8..1ca4a1be2a6daf3d102b4f5f9e78e81a398dce52 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
@@ -63,8 +63,7 @@
var entries = entryList.getEntries();
assert_equals(entries[0].entryType, "navigation",
"Expected entryType to be: navigation.");
- assert_equals(entries[0].name, "document",
- "Expected name to be: document.");
+ assert_equals(entries[0].name, "http://web-platform.test:8001/navigation-timing/nav2_test_attributes_values.html");
assert_equals(entries[0].startTime, 0,
"Expected startTime to be: 0.");
assert_equals(entries[0].duration, entries[0].loadEventEnd,
@@ -75,8 +74,8 @@
// 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, 4140);
- assert_equals(entries[0].decodedBodySize, 4140);
+ assert_equals(entries[0].encodedBodySize, 4154);
+ assert_equals(entries[0].decodedBodySize, 4154);
verifyTimingEventOrder(entries[0], navTiming2EventOrder1);
// When unloadEvent happens
if (entries[0]["unloadEventStart"] != 0) {
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/navigation-timing/nav2_test_instance_accessors.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698