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

Side by Side Diff: LayoutTests/http/tests/serviceworker/ServiceWorkerGlobalScope/resources/unregister-controlling-worker-iframe.html

Issue 900793002: ServiceWorker: Support SWRegistration.unregister() in SWGlobalScope [2/2] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: return nullptr instead of 0 Created 5 years, 10 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 function fetch_url(url) {
falken 2015/02/05 12:07:57 Hopefully we can remove this.
nhiroki 2015/02/06 03:49:29 Removed this file, yay!
4 return new Promise(function(resolve, reject) {
5 var request = new XMLHttpRequest();
6 request.addEventListener('load', function(event) {
7 if (request.status == 200)
8 resolve(request.response);
9 else
10 reject(Error(request.statusText));
11 });
12 request.open('GET', url);
13 request.send();
14 });
15 }
16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698