Mercurial > hg > config
comparison components/tp-cmdline.js @ 200:31249cbe4f19
Bug 629691 - pageloader.xpi does not support e10s for Tp chrome testing. r=jmaher
| author | Joel Maher <jmaher@mozilla.com> |
|---|---|
| date | Sun, 30 Jan 2011 10:21:05 -0500 |
| parents | dd0018bc27de |
| children | 0b38ce037298 |
comparison
equal
deleted
inserted
replaced
| 199:eab9ffc922b1 | 200:31249cbe4f19 |
|---|---|
| 89 args.width = cmdLine.handleFlagWithParam("tpwidth", false); | 89 args.width = cmdLine.handleFlagWithParam("tpwidth", false); |
| 90 args.height = cmdLine.handleFlagWithParam("tpheight", false); | 90 args.height = cmdLine.handleFlagWithParam("tpheight", false); |
| 91 args.offline = cmdLine.handleFlag("tpoffline", false); | 91 args.offline = cmdLine.handleFlag("tpoffline", false); |
| 92 args.noisy = cmdLine.handleFlag("tpnoisy", false); | 92 args.noisy = cmdLine.handleFlag("tpnoisy", false); |
| 93 args.timeout = cmdLine.handleFlagWithParam("tptimeout", false); | 93 args.timeout = cmdLine.handleFlagWithParam("tptimeout", false); |
| 94 args.delay = cmdLine.handleFlagWithParam("tpdelay", false); | |
| 94 args.noForceCC = cmdLine.handleFlag("tpnoforcecc", false); | 95 args.noForceCC = cmdLine.handleFlag("tpnoforcecc", false); |
| 95 } | 96 } |
| 96 catch (e) { | 97 catch (e) { |
| 97 return; | 98 return; |
| 98 } | 99 } |
| 119 " -tpwidth width Width of window\n" + | 120 " -tpwidth width Width of window\n" + |
| 120 " -tpheight height Height of window\n" + | 121 " -tpheight height Height of window\n" + |
| 121 " -tpoffline Force offline mode\n" + | 122 " -tpoffline Force offline mode\n" + |
| 122 " -tpnoisy Dump the name of the last loaded page to console\n" + | 123 " -tpnoisy Dump the name of the last loaded page to console\n" + |
| 123 " -tptimeout Max amount of time given for a page to load, quit if exceeded\n" + | 124 " -tptimeout Max amount of time given for a page to load, quit if exceeded\n" + |
| 125 " -tpdelay Amount of time to wait between each pageload\n" + | |
| 124 " -tpnoforcecc Don't force cycle collection between each pageload\n" | 126 " -tpnoforcecc Don't force cycle collection between each pageload\n" |
| 125 | 127 |
| 126 }; | 128 }; |
| 127 | 129 |
| 128 | 130 |
