layout/reftests/css-mediaqueries/mq_print_orientation-ref.xhtml

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 <?xml version="1.0" encoding="iso-8859-1" ?>
     2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
     5 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-print">
     6 <head>
     7   <title>Media Query - print mode test - orientation</title>
     8   <style><![CDATA[
     9     p {height: 10px; width: 100px; color: yellow; }
    10     p.y { color: aqua; }
    11     p.n { color: yellow; }
    12   ]]></style>
    13 </head>
    15 <body>
    16   <p class="y">a</p>
    17   <p class="n">b</p>
    18   <p class="y">c</p>
    19   <p class="y">d</p>
    20   <p class="y">e</p>
    21   <p class="n">f</p>
    22   <p class="n">g</p>
    23   <p class="n">h</p>
    24   <p class="n">i</p>
    25   <p class="n">j</p>
    26 </body>
    27 </html>

mercurial