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

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: review update 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 6a82d26a7f7a3ce1613daa80dd76c95f5257731b..07402ad475704a344eb33bef014d2de5189f800d 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