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

Unified Diff: LayoutTests/fast/serviceworker/serviceworkercontainer-interface.html

Issue 541943003: ServiceWorker: Remove navigator.serviceWorker.{installing,waiting,active} (Blink) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update expectations Created 6 years, 3 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/fast/serviceworker/serviceworkercontainer-interface.html
diff --git a/LayoutTests/fast/serviceworker/serviceworkercontainer-interface.html b/LayoutTests/fast/serviceworker/serviceworkercontainer-interface.html
index 52cbac308a1020f82e8e25df23e81d38e23977cc..64d79804e97874aea789fe04c4307d631897439d 100644
--- a/LayoutTests/fast/serviceworker/serviceworkercontainer-interface.html
+++ b/LayoutTests/fast/serviceworker/serviceworkercontainer-interface.html
@@ -17,10 +17,7 @@ test(function() {
assert_throws(null, function() { ServiceWorkerContainer(); },
'the constructor should not be callable');
- ['active', 'waiting', 'installing', 'controller'].forEach(function(property) {
- var descriptor = getPropertyDescriptor(property);
- assert_false(descriptor.configurable,
- 'the ' + property + ' property should be Unforgeable');
- });
+ assert_false(getPropertyDescriptor('controller').configurable,
+ 'the controller property should be Unforgeable');
}, 'ServiceWorkerContainer interface');
</script>

Powered by Google App Engine
This is Rietveld 408576698