Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title></title>
5 <style>
6 #red {
7 position: absolute;
8 background-color: blue;
9 top: 10px;
10 left: 10px;
11 right: 100px;
12 bottom: 100px;
13 }
15 #green {
16 position: absolute;
17 background-color: blue;
18 top: 10px;
19 width: 80px;
20 right: 10px;
21 bottom: 100px;
22 }
24 #blue {
25 position: absolute;
26 background-color: blue;
27 left: 10px;
28 height: 80px;
29 right: 100px;
30 bottom: 10px;
31 }
33 #yellow {
34 position: absolute;
35 background-color: blue;
36 right: 10px;
37 width: 80px;
38 height: 80px;
39 bottom: 10px;
40 }
42 </style>
43 <script>
45 </script>
46 </head>
47 <body>
49 <iframe id=red></iframe>
50 <iframe id=green></iframe>
51 <iframe id=blue></iframe>
52 <iframe id=yellow></iframe>
54 </body>
55 </html>