layout/reftests/text-svgglyphs/svg-glyph-extents.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <!DOCTYPE html>
     2 <html class="reftest-wait">
     3 <meta charset="utf-8">
     4 <head>
     5 <style type="text/css">
     6 @font-face {
     7   font-family: foo;
     8   src: url(resources/svg-glyph-extents.otf);
     9 }
    10 body {
    11   font-family: foo;
    12   font-size: 10px;
    13 }
    14 @keyframes test {
    15   from {
    16     font-size: 100px;
    17   }
    18   to {
    19     font-size: 10px;
    20   }
    21 }
    22 div {
    23   display: inline-block;
    24   height: 100px;
    25   width: 100px;
    26   animation-duration: 3s;
    27   animation-name: test;
    28 }
    29 </style>
    30 <script type="text/javascript">
    31 function setup() {
    32   var e = document.getElementById("watchme");
    33   e.addEventListener("animationend", listener, false);
    34 }
    35 function listener() {
    36   document.documentElement.className = "";
    37 }
    38 </script>
    39 </head>
    40 <body onload="setup()">
    41 <div>A</div>
    42 <div id="watchme">B</div>
    43 <div>C</div>
    44 <div>D</div>
    45 </body>
    46 </html>

mercurial