Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
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 | border: 5px solid green; |
michael@0 | 23 | margin: -5px; |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | body > div > div > div { |
michael@0 | 27 | transform: rotateX(30deg); |
michael@0 | 28 | width: 50px; margin-left: 20px; margin-top: -5px; |
michael@0 | 29 | transform-origin: 50% 50%; |
michael@0 | 30 | transform-style: preserve-3d; |
michael@0 | 31 | border: 5px solid blue; |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | </style> |
michael@0 | 35 | |
michael@0 | 36 | <div><div><div></div></div></div> |