layout/reftests/bugs/455105-2.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <!doctype html>
     2 <html><head><title>455105-2</title>
     3 <style>
     4 div#below {
     5   position: absolute;
     6   top: 10px; left: 10px;
     7   width: 40px;
     8   height: 40px;
     9   border: 10px solid red;
    10   background-color: red;
    11 }
    12 div#above {
    13   position: absolute;
    14   top: 10px; left: 10px;
    15   width: 40px;
    16   height: 40px;
    17   border-width: 10px;
    18   border-style: solid;
    19   border-color: green;
    20   /* one pixel green */
    21   background-image: url("data:image/gif;base64,\
    22 R0lGODlhAQABAPAAAACAAAAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==");
    23   /* three by three pixel transparent - drawn *instead of* regular border */
    24   border-image: url("data:image/gif;base64,\
    25 R0lGODlhAwADAPAAAAAAAAAAACH5BAEAAAAALAAAAAADAAMAAAIDhH8FADs=") 1 1;
    26 }
    27 </style>
    28 </head><body>
    29 <div id="below"></div>
    30 <div id="above"></div>
    31 </body></html>

mercurial