layout/reftests/border-radius/curved-borders-all-styles.html

branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
equal deleted inserted replaced
-1:000000000000 0:aeb3cdb4198a
1 <html>
2
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>
25
26 <body onload="ini()"></body>
27
28 </html>
29

mercurial