layout/reftests/text-shadow/text-shadow-selected-1.html

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <script type="text/javascript">
     5 function onload() {
     6   window.focus();
     7   var range = document.createRange();
     8   range.selectNodeContents(document.getElementById("selectMe"));
     9   var sel = window.getSelection();
    10   sel.removeAllRanges();
    11   sel.addRange(range);
    12 }
    13 </script>
    14 <style type="text/css">
    15 body {
    16   background: lightGray;
    17 }
    18 div {
    19   position: absolute;
    20   top: 10px;
    21   left: 10px;
    22   font: 36px monospace;
    23   color: white;
    24 }
    25 </style>
    26 </head>
    27 <!-- test for bug 692752 - paint text shadow on top of selection highlight -->
    28 <body onload="onload()">
    29 <div style="text-shadow:1px 1px 1px red;" id="selectMe">
    30 selected shadowed text
    31 </div>
    32 </body>
    33 </html>

mercurial