diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-09-17 13:16:33 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-09-17 13:16:39 -0700 |
commit | 83c05137e967774b05156f3754f8314c40e682d4 (patch) | |
tree | cdbd7b4c671fb4983d7eb523fea4ea574c2f7e06 | |
parent | 547a94ddf5331707750476eb721281b574678e86 (diff) |
adjust fake shell screen sizes
-rw-r--r-- | tools/reproduceriter_shell.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/reproduceriter_shell.js b/tools/reproduceriter_shell.js index 33bdf690..50824650 100644 --- a/tools/reproduceriter_shell.js +++ b/tools/reproduceriter_shell.js @@ -837,11 +837,11 @@ var Worker = function(workerPath) { }; Worker.id = 0; Worker.messageId = 0; -var screen = { - width: 800, - height: 600, - availWidth: 800, - availHeight: 600, +var screen = { // XXX these values may need to be adjusted + width: 2100, + height: 1313, + availWidth: 2100, + availHeight: 1283, }; var console = { log: function(x) { |