Thu, 15 Jan 2015 15:59:08 +0100
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 /* Override default style */
2 textarea:invalid {
3 box-shadow: none;
4 }
6 textarea.notinvalid {
7 background-color: green;
8 }
9 textarea.notinvalid:invalid {
10 background-color: red;
11 }
13 textarea.invalid {
14 background-color: red;
15 }
16 textarea.invalid:invalid {
17 background-color: green;
18 }