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

Side by Side Diff: LayoutTests/fast/notifications/notifications-window-close-crash.html

Issue 184733002: Remove support for legacy WebKit Notifications (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove tests which no longer apply 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>
4 function runTest()
5 {
6 if (window.testRunner)
7 testRunner.dumpAsText();
8 else
9 {
10 var win = window.open("about:blank");
11 var notification = win.webkitNotifications.createNotificatio n('');
12 notification.show();
13 win.close();
14 notification.cancel();
15 }
16 }
17 </script>
18 </head>
19 <body onload="runTest()">
20 <p>This test needs to run manually and cannot run inside DumpRenderTree. Passes if it does not crash on running the test alongwith with a couple of page reloads.</p>
21 </body>
22 </html>
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698