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 | <!-- |
michael@0 | 2 | Any copyright is dedicated to the Public Domain. |
michael@0 | 3 | http://creativecommons.org/publicdomain/zero/1.0/ |
michael@0 | 4 | --> |
michael@0 | 5 | <svg xmlns="http://www.w3.org/2000/svg"> |
michael@0 | 6 | |
michael@0 | 7 | <title>Testcase for elements referencing an objectBoundingBox pattern with a viewBox</title> |
michael@0 | 8 | |
michael@0 | 9 | <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=605022 --> |
michael@0 | 10 | |
michael@0 | 11 | <defs> |
michael@0 | 12 | <pattern id="test" x="0" y="0" width="20%" height="20%" patternContentUnits="objectBoundingBox" viewBox="0 0 20 20"> |
michael@0 | 13 | <rect width="20" height="20" stroke="none" fill="lime"/> |
michael@0 | 14 | <rect width="1" height="1" stroke="none" fill="red"/> |
michael@0 | 15 | </pattern> |
michael@0 | 16 | <pattern id="cover" x="0" y="0" width="20%" height="20%" patternContentUnits="objectBoundingBox"> |
michael@0 | 17 | <rect width="0.01" height="0.01" stroke="none" fill="lime"/> |
michael@0 | 18 | </pattern> |
michael@0 | 19 | </defs> |
michael@0 | 20 | |
michael@0 | 21 | <rect width="100%" height="100%" fill="lime"/> |
michael@0 | 22 | <rect x="20" y="20" width="200" height="200" fill="url(#test)"/> |
michael@0 | 23 | <rect x="20" y="20" width="200" height="200" fill="url(#cover)"/> |
michael@0 | 24 | </svg> |