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

Unified Diff: LayoutTests/http/tests/serviceworker/interfaces.html

Issue 765323002: ServiceWorker: Add support for .skipWaiting and controllerchange event(3/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: repick the not controlled test Created 6 years 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/serviceworker/interfaces.html
diff --git a/LayoutTests/http/tests/serviceworker/interfaces.html b/LayoutTests/http/tests/serviceworker/interfaces.html
index 7c3a6f1bf6c2af84334e274f1c446330d2442374..33ac472715646a41a547f9e1c8c568bba2a58738 100644
--- a/LayoutTests/http/tests/serviceworker/interfaces.html
+++ b/LayoutTests/http/tests/serviceworker/interfaces.html
@@ -7,11 +7,13 @@
<script>
test(function() {
+ var EVENT_HANDLER = 'object';
verify_interface(
'ServiceWorkerContainer', navigator.serviceWorker,
{
register: 'function',
- getRegistration: 'function'
+ getRegistration: 'function',
+ oncontrollerchange: EVENT_HANDLER
});
}, 'Interfaces and attributes of ServiceWorkerContainer');

Powered by Google App Engine
This is Rietveld 408576698