layout/reftests/font-face/src-list-local-full-ref.html

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 <!DOCTYPE HTML>
     2 <html>
     3 <head>
     4 <title>src local ref with regular, bold, italic</title>
     5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     7 <style type="text/css">
     9 body {
    10   margin: 50px;
    11   font-size: 24pt;
    12 }
    14 /* use full names */
    16 p { font-family: Helvetica Neue, Bitstream Vera Sans, FreeSans, SwissA, DejaVu Sans, Arial, serif; }
    18 .regular {  }
    19 .bold { font-weight: bold; }
    20 .italic { font-style: italic; }
    22 </style>
    24 <script type="text/javascript">
    26 </script>
    28 </head>
    29 <body>
    31 <p class="regular">This should be a sans-serif face</p>
    33 <p class="bold">This should be a bold sans-serif face</p>
    35 <p class="italic">This should be an italic sans-serif face</p>
    37 </body>
    38 </html>

mercurial