Roll src/third_party/WebKit d9c6159:8139f33 (svn 201974:201975)
[chromium-blink-merge.git] / chrome / test / data / notifications / android_test.html
blob08e707fcc057ee4713238c15bb19564370c318f2
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>Android Web Notifications Instrumentation test-page</title>
6 </head>
7 <body>
8 <!-- This page is used by the NotificationUIManagerTest instrumentation test
9 suite on Android. -->
10 <script src="notification_test_utils.js"></script>
11 <script>
12 function showNotification(title, options) {
13 GetActivatedServiceWorker('android_test_worker.js', location.pathname)
14 .then(function(registration) {
15 registration.showNotification(title, options);
16 });
18 </script>
19 </body>
20 </html>