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

Unified Diff: chrome/test/data/extensions/platform_apps/window_api/test.js

Issue 267303003: Promote chrome app window frame color to stable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/api/app_window.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
- 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]();
« no previous file with comments | « chrome/common/extensions/api/app_window.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698