layout/reftests/unicode/unicode-attribute-selector.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 <html>
     2 <head>
     3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
     4   <title>Unicode tests - attribute selectors</title>
     5   <style>
     6     div[dİr] {color: red;}
     7     div[dİr="ltr"] {text-indent: 30px;}
     8     input[dİsabled] {display: none;}
     9     //input[dİsabled="disabled"] {display: inline;}
    10   </style>
    11 </head>
    13 <body>
    14   <div dir='ltr'><p lang="hi">स्टार</p></div>
    15   <input disabled>
    16   <input dİsabled="DİSABLED">
    17   <input dİsabled="disabled">
    18 </body>
    19 </html>

mercurial