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.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <title>Testcase for outline around 3-D transform</title> |
michael@0 | 3 | <style> |
michael@0 | 4 | |
michael@0 | 5 | html, body { margin: 0; padding: 0; border: none } |
michael@0 | 6 | |
michael@0 | 7 | div { |
michael@0 | 8 | width: 100px; |
michael@0 | 9 | height: 100px; |
michael@0 | 10 | } |
michael@0 | 11 | |
michael@0 | 12 | body > div { |
michael@0 | 13 | margin-top: 200px; |
michael@0 | 14 | margin-left: 200px; |
michael@0 | 15 | transform-style: flat; |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | body > div > div { |
michael@0 | 19 | transform: rotateX(30deg); |
michael@0 | 20 | transform-origin: 50% 50%; |
michael@0 | 21 | transform-style: preserve-3d; |
michael@0 | 22 | outline: 5px solid green; |
michael@0 | 23 | } |
michael@0 | 24 | |
michael@0 | 25 | body > div > div > div { |
michael@0 | 26 | transform: rotateX(30deg); |
michael@0 | 27 | width: 50px; margin-left: 25px; |
michael@0 | 28 | transform-origin: 50% 50%; |
michael@0 | 29 | transform-style: preserve-3d; |
michael@0 | 30 | outline: 5px solid blue; |
michael@0 | 31 | } |
michael@0 | 32 | |
michael@0 | 33 | </style> |
michael@0 | 34 | |
michael@0 | 35 | <div><div><div></div></div></div> |