summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
authorgrt@chromium.org <grt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-25 13:49:01 +0000
committergrt@chromium.org <grt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-25 13:49:01 +0000
commitb6844897a732c13747e65902e1db616e3925da2a (patch)
tree52f249f50ca247a396e347dd1b16e22d0c36b093 /chrome_frame
parentcdc0014eb735aa38b63832a1a55994f777898160 (diff)
downloadchromium_src-b6844897a732c13747e65902e1db616e3925da2a.zip
chromium_src-b6844897a732c13747e65902e1db616e3925da2a.tar.gz
chromium_src-b6844897a732c13747e65902e1db616e3925da2a.tar.bz2
Disable GCF window.print() test under Aura.
BUG=180997 Review URL: https://chromiumcodereview.appspot.com/13851020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@196392 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r--chrome_frame/test/ui_test.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome_frame/test/ui_test.cc b/chrome_frame/test/ui_test.cc
index cf59b18..66a6fcf 100644
--- a/chrome_frame/test/ui_test.cc
+++ b/chrome_frame/test/ui_test.cc
@@ -428,7 +428,12 @@ TEST_P(FullTabUITest, DISABLED_TabCrashRefresh) {
// Test that window.print() on a page results in the native Windows print dialog
// appearing rather than Chrome's in-page print preview.
+#if defined(USE_AURA)
+// Native printing is broken with use_aura=1; see http://crbug.com/180997.
+TEST_P(FullTabUITest, DISABLED_WindowPrintOpensNativePrintDialog) {
+#else
TEST_P(FullTabUITest, WindowPrintOpensNativePrintDialog) {
+#endif
std::wstring window_print_url(GetTestUrl(L"window_print.html"));
std::wstring window_print_title(L"window.print");