Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <fieldset id="fs1"><legend>#2</legend></fieldset>
5 <fieldset id="fs2"><legend>#1</legend><legend>#2</legend></fieldset>
6 <script>
7 document.body.offsetHeight;
9 var fs1 = document.getElementById("fs1");
10 var l = document.createElement("legend");
11 l.textContent = "#1";
12 fs1.insertBefore(l, fs1.firstChild);
14 var fs2 = document.getElementById("fs2");
15 fs2.removeChild(fs2.firstChild);
16 </script>
17 </body>
18 </html>