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

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

michael@0 1 <html>
michael@0 2
michael@0 3 <head>
michael@0 4 <title>testcase for bug #382721</title>
michael@0 5 <style>
michael@0 6 div {
michael@0 7 background: beige;
michael@0 8 margin: 1ex;
michael@0 9 padding: 1ex;
michael@0 10 border-radius: 3ex;
michael@0 11 }
michael@0 12 </style>
michael@0 13 <script>
michael@0 14 function ini() {
michael@0 15 var s,i,d;
michael@0 16 s=['none','hidden','dotted','dashed','solid',
michael@0 17 'double','groove','ridge','inset','outset'];
michael@0 18 for (i=0; i<s.length; i++) {
michael@0 19 d=document.createElement('div');
michael@0 20 d.style.border=d.innerHTML=s[i];
michael@0 21 document.body.appendChild(d);
michael@0 22 }}
michael@0 23 </script>
michael@0 24 </head>
michael@0 25
michael@0 26 <body onload="ini()"></body>
michael@0 27
michael@0 28 </html>
michael@0 29

mercurial