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

Side by Side Diff: LayoutTests/http/tests/serviceworker/resource-timing.html

Issue 1166953007: Add workerReady timing for ServiceWorker controlled requests [3/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@workerReady
Patch Set: test Created 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/timing/PerformanceResourceTiming.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script> 2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="../resources/testharnessreport.js"></script>
4 <script src="../resources/get-host-info.js"></script> 4 <script src="../resources/get-host-info.js"></script>
5 <script src="resources/test-helpers.js"></script> 5 <script src="resources/test-helpers.js"></script>
6 <script> 6 <script>
7 function resourceUrl(path) { 7 function resourceUrl(path) {
8 return get_host_info()['HTTP_ORIGIN'] + base_path() + path; 8 return get_host_info()['HTTP_ORIGIN'] + base_path() + path;
9 } 9 }
10 10
11 function verify(performance, resource, description) { 11 function verify(performance, resource, description) {
12 var entry = performance.getEntriesByName(resourceUrl(resource))[0]; 12 var entry = performance.getEntriesByName(resourceUrl(resource))[0];
13 assert_greater_than(entry.workerStart, 0, description); 13 assert_greater_than(entry.workerStart, 0, description);
14 assert_greater_than_equal(entry.workerStart, entry.startTime, description); 14 assert_greater_than_equal(entry.workerStart, entry.startTime, description);
15 assert_less_than_equal(entry.workerStart, entry.fetchStart, description); 15 assert_less_than(entry.workerStart, entry.fetchStart, description);
16 if (resource.indexOf('redirect.php') != -1) { 16 if (resource.indexOf('redirect.php') != -1)
17 assert_less_than_equal(entry.workerStart, entry.redirectStart, 17 assert_less_than(entry.workerStart, entry.redirectStart, description);
18 description); 18 else
19 } else {
20 assert_equals(entry.redirectStart, 0, description); 19 assert_equals(entry.redirectStart, 0, description);
21 }
22 } 20 }
23 21
24 async_test(function(t) { 22 async_test(function(t) {
25 var worker_url = 'resources/resource-timing-worker.js'; 23 var worker_url = 'resources/resource-timing-worker.js';
26 var scope = 'resources/resource-timing-iframe.html'; 24 var scope = 'resources/resource-timing-iframe.html';
27 var registration; 25 var registration;
28 26
29 service_worker_unregister_and_register(t, worker_url, scope) 27 service_worker_unregister_and_register(t, worker_url, scope)
30 .then(function(r) { 28 .then(function(r) {
31 registration = r; 29 registration = r;
(...skipping 17 matching lines...) Expand all
49 .catch(unreached_rejection(t)); 47 .catch(unreached_rejection(t));
50 }, 'Controlled resource loads'); 48 }, 'Controlled resource loads');
51 49
52 test(function() { 50 test(function() {
53 var url = resourceUrl('resources/test-helpers.js'); 51 var url = resourceUrl('resources/test-helpers.js');
54 var entry = window.performance.getEntriesByName(url)[0]; 52 var entry = window.performance.getEntriesByName(url)[0];
55 assert_equals(entry.workerStart, 0, 'Non-controlled'); 53 assert_equals(entry.workerStart, 0, 'Non-controlled');
56 }, 'Non-controlled resource loads'); 54 }, 'Non-controlled resource loads');
57 55
58 </script> 56 </script>
OLDNEW
« no previous file with comments | « no previous file | Source/core/timing/PerformanceResourceTiming.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698