summaryrefslogtreecommitdiff
path: root/legacy/works/form-width.html
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2019-02-16 14:39:10 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2019-02-16 14:39:10 +0000
commit48553ee9ba7723d46c10fdc7705e3b79e328d384 (patch)
treed066fa82cc308b57c5d00f3dd0538969d5a028a2 /legacy/works/form-width.html
parentff7f36cc9ef5f8ec8b97bcce543f966e726389bb (diff)
downloadnetsurf-test-48553ee9ba7723d46c10fdc7705e3b79e328d384.tar.gz
netsurf-test-48553ee9ba7723d46c10fdc7705e3b79e328d384.tar.bz2
legacy tests: Move all the old tests to a legacy directory.
These are from the old days of ad-hoc manual testing. There is nothing to indicate correct behaviour for these files without viewing the source, or comparing with another browser.
Diffstat (limited to 'legacy/works/form-width.html')
-rw-r--r--legacy/works/form-width.html75
1 files changed, 75 insertions, 0 deletions
diff --git a/legacy/works/form-width.html b/legacy/works/form-width.html
new file mode 100644
index 0000000..c68b9bf
--- /dev/null
+++ b/legacy/works/form-width.html
@@ -0,0 +1,75 @@
+<html>
+<head>
+<title>Form Width</title>
+</head>
+<body bgcolor="#483d8b" color="#ffffff">
+<p>Test 1 (from drobe):</p>
+
+<table><tr>
+
+<form method="get" action="/search/">
+
+<td>
+ <select name="type">
+ <option value="pages">RISC OS Websites</option>
+ <option value="drobenews">Drobe News</option>
+ <option value="usenet">comp.sys.acorn.*</option>
+ <option value="stronghelp">Stronghelp Manuals</option>
+ <option value="files">Downloadable Files</option>
+ </select>
+</td>
+
+<td>
+ <input type="text" name="terms" size="12" value="">
+</td>
+
+<td>
+ <input type="submit" value="Go!">
+</td>
+
+</form>
+
+</tr></table>
+
+<p>Test 2, problem remains without borders:</p>
+<table><tr>
+
+<form method="get" action="/search/">
+
+<td>
+ <select name="type" style="border:0;">
+ <option value="pages">RISC OS Websites</option>
+ <option value="drobenews">Drobe News</option>
+ <option value="usenet">comp.sys.acorn.*</option>
+ <option value="stronghelp">Stronghelp Manuals</option>
+ <option value="files">Downloadable Files</option>
+ </select>
+</td>
+
+<td>
+ <input type="text" name="terms" size="12" value="" style="border:0;">
+</td>
+
+<td>
+ <input type="submit" value="Go!" style="border:0;">
+</td>
+
+</form>
+
+</tr></table>
+
+<p>Test 3, no overlapping when form elements aren't in table cells:</p>
+<form method="get" action="/search/">
+ <select name="type">
+ <option value="pages">RISC OS Websites</option>
+ <option value="drobenews">Drobe News</option>
+ <option value="usenet">comp.sys.acorn.*</option>
+ <option value="stronghelp">Stronghelp Manuals</option>
+ <option value="files">Downloadable Files</option>
+ </select>
+ <input type="text" name="terms" size="12" value="">
+ <input type="submit" value="Go!">
+</form>
+
+
+</body></html>