layout/reftests/bugs/846144-1.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 <!DOCTYPE html>
     2 <html><head>
     3 <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
     4   <title>Border radius issue demo</title>
     5   <style type="text/css">
     6     .testClass {
     7     width: 100px;
     8     height: 100px;
     9     margin: 20px;
    10     background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAIAAAADnC86AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAADdJREFUWEftzTERACAMADH8VAH+hRUXz5K77Dl39gtxRpwRZ8QZcUacEWfEGXFGnBFnxBlxZPYBKVqrOft7R9EAAAAASUVORK5CYII=);
    11     border-radius: 50px;
    12     background-size: contain;
    13     /* Adding compatibility attributes for cross-browser comparison
    14        Issue repros fine with just transform set. */
    15     -moz-transform: translate(0,0);
    16     -ms-transform: translate(0,0);
    17     -webkit-transform: translate(0,0)
    18     transform: translate(0,0);
    19 }
    20   </style>
    21 </head>
    22 <body>
    23 	<div class="testClass"></div>
    24 </body></html>

mercurial