Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <html>
3 <head>
4 <title>testcase for bug #382721</title>
5 <style>
6 div {
7 background: beige;
8 margin: 1ex;
9 padding: 1ex;
10 border-radius: 3ex;
11 }
12 </style>
13 <script>
14 function ini() {
15 var s,i,d;
16 s=['none','hidden','dotted','dashed','solid',
17 'double','groove','ridge','inset','outset'];
18 for (i=0; i<s.length; i++) {
19 d=document.createElement('div');
20 d.style.border=d.innerHTML=s[i];
21 document.body.appendChild(d);
22 }}
23 </script>
24 </head>
26 <body onload="ini()"></body>
28 </html>