Index: chrome/test/data/extensions/platform_apps/window_api_interactive/test.js |
diff --git a/chrome/test/data/extensions/platform_apps/window_api_interactive/test.js b/chrome/test/data/extensions/platform_apps/window_api_interactive/test.js |
index 9f6784901fbb6f184f7d64403aec64b356e99704..ab02b4d5928e202fdd076bd94c83f66ae6231bc0 100644 |
--- a/chrome/test/data/extensions/platform_apps/window_api_interactive/test.js |
+++ b/chrome/test/data/extensions/platform_apps/window_api_interactive/test.js |
@@ -221,6 +221,17 @@ function testShow() { |
]); |
} |
+function testDrawAttention() { |
+ chrome.test.runTests([ |
+ function drawThenClearAttention() { |
+ chrome.app.window.create('test.html', {}, callbackPass(function(win) { |
+ win.drawAttention(); |
+ win.clearAttention(); |
+ })); |
+ } |
+ ]); |
+} |
+ |
chrome.app.runtime.onLaunched.addListener(function() { |
chrome.test.sendMessage('Launched', function(reply) { |
window[reply](); |