Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 div {
6 background-color: pink;
7 }
8 div div {
9 float: left;
10 width: 100px; height: 100px;
11 margin: 4px;
12 border: 1px solid #000;
13 background-color: #eee;
14 }
15 br {
16 clear: left;
17 }
18 a {
19 outline: none;
20 }
21 </style>
22 </head>
23 <body onload="document.getElementById('test').focus();">
24 <div>
25 <div>
26 <a id="test" href="#">Link 1</a>
27 </div>
28 <div>
29 <a href="#">Link 2</a>
30 </div>
31 <br>
32 <div>
33 <a href="#">Link 3</a>
34 </div>
35 <br></div>
36 </body>
37 </html>