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

Side by Side Diff: chrome/test/data/extensions/platform_apps/print_api/test.js

Issue 23054002: Added basic browser test for window.print() from Chrome apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added print preview auto-cancel to avoid test timeouts Created 7 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 chrome.app.runtime.onLaunched.addListener(function() {
6 chrome.test.runTests([
7 function testWindowDotPrintCallWorks() {
8 chrome.app.window.create('test.html', {}, chrome.test.callbackPass(
9 function(appWindow) {
10 appWindow.contentWindow.onload = chrome.test.callbackPass(
11 function() {
12 appWindow.contentWindow.print();
13 });
14 }));
15 }
16 ]);
17 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698