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

Unified Diff: LayoutTests/http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_cross_origin_redirect_chain.html

Issue 13912021: [Resource Timing] Expose redirect timing information (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebaseline Created 7 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: LayoutTests/http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_cross_origin_redirect_chain.html
diff --git a/LayoutTests/http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_cross_origin_redirect_chain.html b/LayoutTests/http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_cross_origin_redirect_chain.html
new file mode 100644
index 0000000000000000000000000000000000000000..305eec61a044f90265bb7cbd29a5715157991aad
--- /dev/null
+++ b/LayoutTests/http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_cross_origin_redirect_chain.html
@@ -0,0 +1,51 @@
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <meta charset="utf-8" />
+ <title>resource timing information for cross-origin redirect chain</title>
+ <link rel="author" title="Intel" href="http://www.intel.com/" />
+ <link rel="help" href="http://www.w3.org/TR/resource-timing/#performanceresourcetiming"/>
+ <script src="/w3c/resources/testharness.js"></script>
+ <script src="/w3c/resources/testharnessreport.js"></script>
+ <script src="/w3c/webperf/resources/webperftestharness.js"></script>
+ <script src="/w3c/webperf/resources/webperftestharnessextension.js"></script>
+
+ <script>
+ setup({explicit_done: true});
+ setup({timeout: 30000});
+ test_namespace();
+ var pageOrigin = "127.0.0.1:8000";
+ var crossOrigin = "localhost:8000";
+
+ function onload_test()
+ {
+ var context = new PerformanceContext(performance);
+ var entry = context.getEntriesByName(document.getElementById("frameContext").src, "resource")[0];
+
+ test_equals(entry.redirectStart, 0, "redirectStart should be 0 in cross-origin redirect! ");
+ test_equals(entry.redirectEnd, 0, "redirectEnd should be 0 in cross-origin redirect! ");
+ test_greater_or_equals(entry.fetchStart, 3000, "fetchStart should be 3 secs later than navigationStart");
+ test_equals(entry.startTime, entry.fetchStart, "startTime should be the same to fetchStart in cross-origin redirect!");
+ done();
+ }
+ </script>
+
+ </head>
+ <body>
+ <h1>Description</h1>
+ <p>This test validates the values in resource timing for cross-origin redirect chain.</p>
+ <iframe id="frameContext" src="" style="width: 250px; height: 250px;"></iframe>
+ <script>
+ test_equals(document.location.host, pageOrigin, 'Starting document.location.hostname is correct (' + pageOrigin + ')');
+
+ var destUrl = 'http://' + crossOrigin + '/w3c/webperf/resources/multi_redirect.php?';
+ destUrl += 'pageOrigin=' + 'http://' + pageOrigin;
+ destUrl += '&crossOrigin=' + 'http://' + crossOrigin;
+ destUrl += '&timingAllow=0';
+ var frameContext = document.getElementById("frameContext");
+ frameContext.onload = onload_test;
+ frameContext.src = destUrl;
+ </script>
+ <div id="log"></div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698