| Index: LayoutTests/fast/notifications/resources/show-notification.html
|
| diff --git a/LayoutTests/fast/notifications/resources/show-notification.html b/LayoutTests/fast/notifications/resources/show-notification.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e1467697da3ca46dbc1b6cfc5c87a2f6c1f55f36
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/notifications/resources/show-notification.html
|
| @@ -0,0 +1,16 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| + <head>
|
| + <title>Page which creates a notification and then immediately closes it.</title>
|
| + <!-- This resource is part of fast/notifications/notifications-leak-documents.html -->
|
| + </head>
|
| + <body>
|
| + <script>
|
| + var notification = new Notification('Title', {
|
| + body: 'Notification content'
|
| + });
|
| +
|
| + notification.close();
|
| + </script>
|
| + </body>
|
| +</html>
|
|
|