aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/post_build_commands.py
diff options
context:
space:
mode:
authorPaul Rouget <me@paulrouget.com>2016-05-23 06:22:19 +0200
committerPaul Rouget <me@paulrouget.com>2016-05-23 06:22:57 +0200
commit3a05f387a0d71ab733ef601d791686077ec2f868 (patch)
treea51a0e17b676eee4a34fc7c6f8b2938a932c0a3e /python/servo/post_build_commands.py
parent6b039612bac3159a51d09e341c18f9a6ccc948b1 (diff)
downloadservo-3a05f387a0d71ab733ef601d791686077ec2f868.tar.gz
servo-3a05f387a0d71ab733ef601d791686077ec2f868.zip
browserhtml update
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r--python/servo/post_build_commands.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py
index 3170e07437a..693fbfdde0c 100644
--- a/python/servo/post_build_commands.py
+++ b/python/servo/post_build_commands.py
@@ -131,7 +131,10 @@ class PostBuildCommands(CommandBase):
if browserhtml_path is None:
print("Could not find browserhtml package; perhaps you haven't built Servo.")
return 1
- args = args + ['-w', '-b', '--pref', 'dom.mozbrowser.enabled',
+ args = args + ['-w', '-b',
+ '--pref', 'dom.mozbrowser.enabled',
+ '--pref', 'dom.forcetouch.enabled',
+ '--pref', 'shell.quit-on-escape.enabled=false',
path.join(browserhtml_path, 'out', 'index.html')]
args = args + params
else: