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

Side by Side Diff: LayoutTests/fast/notifications/resources/notifications-cancel-request-permission.html

Issue 187323005: Revert of Remove support for legacy WebKit Notifications (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script type="text/javascript">
4 function log(message)
5 {
6 parent.document.getElementById("result").innerHTML += message + "<br >";
7 }
8
9 function runTests()
10 {
11 if (window.testRunner) {
12 testRunner.dumpAsText();
13 }
14
15 if (window.testRunner) {
16 testRunner.ignoreLegacyWebNotificationPermissionRequests();
17 }
18
19 window.webkitNotifications.requestPermission(
20 function() { log("FAIL: Permission callback invoked."); }
21 );
22
23 }
24 </script>
25 </head>
26 <body onload="runTests();">
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698