diff options
author | oshima <oshima@chromium.org> | 2015-10-05 11:21:57 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-05 18:25:04 +0000 |
commit | 18fda9885e28ef5853d0ec0e8a93ff53948e0249 (patch) | |
tree | 97bd9974e39ba4c5397048d9e2e123f79429e524 /testing | |
parent | 4f1214d59eeea28be785ede924b06849d5dd631f (diff) | |
download | chromium_src-18fda9885e28ef5853d0ec0e8a93ff53948e0249.zip chromium_src-18fda9885e28ef5853d0ec0e8a93ff53948e0249.tar.gz chromium_src-18fda9885e28ef5853d0ec0e8a93ff53948e0249.tar.bz2 |
Make sure the ash's host window is placed within the Xvfb's root window so that mouse can move correctly.
Enlarge the Xvfb's size to 1280x800 as there are several tests that require minimum width 1280.
BUG=538799
R=sky@chromium.org
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1389503002
Cr-Commit-Position: refs/heads/master@{#352357}
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/xvfb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/xvfb.py b/testing/xvfb.py index 62815b2..2b17d96 100755 --- a/testing/xvfb.py +++ b/testing/xvfb.py @@ -83,7 +83,7 @@ def start_xvfb(env, build_dir, xvfb_path='Xvfb', display=':9'): openbox_proc = None try: - xvfb_cmd = [xvfb_path, display, '-screen', '0', '1024x768x24', '-ac', + xvfb_cmd = [xvfb_path, display, '-screen', '0', '1280x800x24', '-ac', '-nolisten', 'tcp', '-dpi', '96'] xvfb_proc = subprocess.Popen(xvfb_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) |