mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
763 B
HTML
31 lines
763 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
input {
|
||
|
font-family: sans-serif;
|
||
|
border: solid 1px gray;
|
||
|
margin-right: 0px;
|
||
|
margin-left: 0px;
|
||
|
}
|
||
|
input[type="text"] {
|
||
|
width: 3em;
|
||
|
}
|
||
|
table {
|
||
|
border: solid 1px gray;
|
||
|
padding: 0.3em;
|
||
|
margin-bottom: 0.3em;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form action="cycler.html" method="GET">
|
||
|
<table>
|
||
|
<tr><td>Cycles:</td><td><input type="text" name="cycles" value="5"> (number of times to loop over the pages)</td>
|
||
|
<tr><td>Pages:</td><td><input type="text" name="pages" value=""> (only loop over the first N pages; leave blank to loop over all pages)</td>
|
||
|
<tr><td>I18N:</td><td><input type="text" name="i18n" value="0"> (set to "1" to include i18n pages)</td>
|
||
|
</table>
|
||
|
<input type="submit" value="Begin Test">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|