Chromium Code Reviews| Index: chrome/test/data/extensions/platform_apps/window_api/test.js |
| diff --git a/chrome/test/data/extensions/platform_apps/window_api/test.js b/chrome/test/data/extensions/platform_apps/window_api/test.js |
| index 4dd1deada418212fac84708ac38e65718a0a83f9..ebcc4447339240d001de0cdd34ad7bbbda55528d 100644 |
| --- a/chrome/test/data/extensions/platform_apps/window_api/test.js |
| +++ b/chrome/test/data/extensions/platform_apps/window_api/test.js |
| @@ -1352,32 +1352,6 @@ function testFrameColors() { |
| ]); |
| } |
| -function testFrameColorsInStable() { |
|
Matt Giuca
2014/05/07 11:48:34
Maybe you should keep this test (at least for a wh
benwells
2014/05/08 02:43:18
Yeah, I'll keep it around for a little while. Not
Matt Giuca
2014/05/08 04:30:14
Ah that makes sense.
|
| - chrome.test.runTests([ |
| - function testWithNoColor() { |
| - chrome.app.window.create('test.html', callbackPass(function(win) { |
| - if (navigator.platform.substr(0, 3).toLowerCase() == "win") { |
| - chrome.test.assertEq(true, win.hasFrameColor); |
| - chrome.test.assertEq(0xFFFFFF, win.activeFrameColor); |
| - chrome.test.assertEq(0xFFFFFF, win.inactiveFrameColor); |
| - } else { |
| - chrome.test.assertEq(false, win.hasFrameColor); |
| - } |
| - win.close(); |
| - })); |
| - }, |
| - |
| - function testWithOptionsGivesError() { |
| - chrome.app.window.create('test.html', { |
| - frame: { |
| - color: '#FFF' |
| - } |
| - }, |
| - callbackFail('Frame options are only available in dev channel.')); |
| - } |
| - ]); |
| -} |
| - |
| chrome.app.runtime.onLaunched.addListener(function() { |
| chrome.test.sendMessage('Launched', function(reply) { |
| window[reply](); |