Skip to content

Commit 840432e

Browse files
Work around Firefox column formatting bug.
1 parent 5d65d73 commit 840432e

File tree

1 file changed

+43
-41
lines changed

1 file changed

+43
-41
lines changed

index.html

Lines changed: 43 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -30,48 +30,50 @@ <h1>SRFI 64: A Scheme API for test suites</h1>
3030
<li>
3131
<a href="mailto:[email protected]">srfi-64@<span class="antispam">nospam</span>srfi.schemers.org (subscribers only)</a></li>
3232
<li>
33-
<form method="POST" action="https://www.simplelists.com/subscribe.php">
34-
<div class="title">Subscribe to srfi-64 mailing list</div>
35-
<input name="email"
36-
placeholder="email address"
37-
tabindex="1"
38-
type="email" >
39-
<input name="name"
40-
placeholder="full name"
41-
tabindex="2"
42-
type="text" >
43-
<p>
44-
<input id="sub-digest"
45-
name="digest"
46-
tabindex="3"
47-
type="checkbox"
48-
value="digest" >
49-
<label for="sub-digest">daily digest?</label></p>
50-
<input class="submit"
51-
name="submit"
52-
tabindex="4"
53-
type="submit"
54-
value="Subscribe to srfi-64" >
55-
<input type="hidden" name="action" value="subscribe">
56-
<input type="hidden" name="list" value="[email protected]"></form></li>
33+
<span class="firefox-column-workaround">
34+
<form method="POST" action="https://www.simplelists.com/subscribe.php">
35+
<div class="title">Subscribe to srfi-64 mailing list</div>
36+
<input name="email"
37+
placeholder="email address"
38+
tabindex="1"
39+
type="email" >
40+
<input name="name"
41+
placeholder="full name"
42+
tabindex="2"
43+
type="text" >
44+
<p>
45+
<input id="sub-digest"
46+
name="digest"
47+
tabindex="3"
48+
type="checkbox"
49+
value="digest" >
50+
<label for="sub-digest">daily digest?</label></p>
51+
<input class="submit"
52+
name="submit"
53+
tabindex="4"
54+
type="submit"
55+
value="Subscribe to srfi-64" >
56+
<input type="hidden" name="action" value="subscribe">
57+
<input type="hidden" name="list" value="[email protected]"></form></a></li>
5758
<li>
58-
<form method="POST" action="https://www.simplelists.com/subscribe.php">
59-
<p class="title">Unsubscribe from srfi-64 mailing list</p>
60-
<input name="email"
61-
placeholder="email address"
62-
tabindex="5"
63-
type="email" >
64-
<input class="submit"
65-
name="submit"
66-
tabindex="6"
67-
type="submit"
68-
value="Unsubscribe from srfi-64" >
69-
<input name="action"
70-
type="hidden"
71-
value="unsubscribe" >
72-
<input name="list"
73-
type="hidden"
74-
value="[email protected]"></form></li></ul>
59+
<span class="firefox-column-workaround">
60+
<form method="POST" action="https://www.simplelists.com/subscribe.php">
61+
<p class="title">Unsubscribe from srfi-64 mailing list</p>
62+
<input name="email"
63+
placeholder="email address"
64+
tabindex="5"
65+
type="email" >
66+
<input class="submit"
67+
name="submit"
68+
tabindex="6"
69+
type="submit"
70+
value="Unsubscribe from srfi-64" >
71+
<input name="action"
72+
type="hidden"
73+
value="unsubscribe" >
74+
<input name="list"
75+
type="hidden"
76+
value="[email protected]"></form></a></li></ul>
7577
<h2>Abstract</h2> <p>This defines an API for writing <dfn>test
7678
suites</dfn>, to make it easy to portably test Scheme APIs, libraries,
7779
applications, and implementations. A test suite is a collection of

0 commit comments

Comments
 (0)