blob: 6cc052a1555d7b91a7df1778916a6e342e57734c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/shell/common/shell_switches.h"
namespace switches {
// Allow access to external pages during layout tests.
const char kAllowExternalPages[] = "allow-external-pages";
// Check whether all system dependencies for running layout tests are met.
const char kCheckLayoutTestSysDeps[] = "check-layout-test-sys-deps";
// Tells Content Shell that it's running as a content_browsertest.
const char kContentBrowserTest[] = "browser-test";
// Makes Content Shell use the given path for its data directory.
const char kContentShellDataPath[] = "data-path";
// Show the content_shell window, even when running in layout test mode.
const char kDisableHeadlessForLayoutTests[] =
"disable-headless-for-layout-tests";
// Request pages to be dumped as text once they finished loading.
const char kDumpRenderTree[] = "dump-render-tree";
// Enable accelerated 2D canvas.
const char kEnableAccelerated2DCanvas[] = "enable-accelerated-2d-canvas";
// Alias for kEnableSoftwareCompositingGLAdapter.
const char kEnableSoftwareCompositing[] = "enable-software-compositing";
// Disables the timeout for layout tests.
const char kNoTimeout[] = "no-timeout";
// Save results when layout-as-browser tests fail.
const char kOutputLayoutTestDifferences[] = "output-layout-test-differences";
} // namespace switches
|