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

Unified Diff: LayoutTests/http/tests/serviceworker/registration-end-to-end.html

Issue 683733002: ServiceWorker: Remove the obsolete "parsed" state [3/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 2 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 | « LayoutTests/TestExpectations ('k') | LayoutTests/http/tests/serviceworker/state.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/serviceworker/registration-end-to-end.html
diff --git a/LayoutTests/http/tests/serviceworker/registration-end-to-end.html b/LayoutTests/http/tests/serviceworker/registration-end-to-end.html
index 1076c1f537c890bf3d0c04d528a3bfecfc17e85a..4845afb91f0827827df46d32dc9268a7f488c220 100644
--- a/LayoutTests/http/tests/serviceworker/registration-end-to-end.html
+++ b/LayoutTests/http/tests/serviceworker/registration-end-to-end.html
@@ -49,9 +49,6 @@ t.step(function() {
serviceWorkerStates.push(sw.state);
switch (sw.state) {
- case 'installing':
- assert_equals(lastServiceWorkerState, 'parsed');
- break;
case 'installed':
assert_equals(lastServiceWorkerState, 'installing');
break;
@@ -75,7 +72,7 @@ t.step(function() {
Promise.all([sawMessage, sawActive]).then(t.step_func(function() {
assert_array_equals(serviceWorkerStates,
- ['parsed', 'installing', 'installed', 'activating', 'activated'],
+ ['installing', 'installed', 'activating', 'activated'],
'Service worker should pass through all states');
assert_equals(currentChangeCount, 0,
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/http/tests/serviceworker/state.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698