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.

     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>

mercurial