| Index: chrome/test/data/extensions/api_test/notifications/api/user_gesture/background.js
|
| diff --git a/chrome/test/data/extensions/api_test/notifications/api/user_gesture/background.js b/chrome/test/data/extensions/api_test/notifications/api/user_gesture/background.js
|
| index f9194e24e49ee97c4cf24b92ce317b6b3f6b64a2..fd1bd6126b599f5e423f3493c6f5932bdd61d517 100644
|
| --- a/chrome/test/data/extensions/api_test/notifications/api/user_gesture/background.js
|
| +++ b/chrome/test/data/extensions/api_test/notifications/api/user_gesture/background.js
|
| @@ -2,6 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +const red_dot = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA" +
|
| + "AAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO" +
|
| + "9TXL0Y4OHwAAAABJRU5ErkJggg==";
|
| +
|
| function userActionTest() {
|
| chrome.test.sendMessage("");
|
| }
|
| @@ -11,7 +15,7 @@ chrome.notifications.onButtonClicked.addListener(userActionTest);
|
| chrome.notifications.onClosed.addListener(userActionTest);
|
|
|
| chrome.notifications.create("test", {
|
| - iconUrl: "",
|
| + iconUrl: red_dot,
|
| title: "hi",
|
| message: "there",
|
| type: "basic",
|
|
|