Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <!-- |
michael@0 | 2 | Any copyright is dedicated to the Public Domain. |
michael@0 | 3 | http://creativecommons.org/licenses/publicdomain/ |
michael@0 | 4 | |
michael@0 | 5 | Test with clip-path. |
michael@0 | 6 | --> |
michael@0 | 7 | <!DOCTYPE html> |
michael@0 | 8 | <html> |
michael@0 | 9 | <body style="margin:0"> |
michael@0 | 10 | <div style="width:200px; height:200px; |
michael@0 | 11 | clip-path:url(#c); |
michael@0 | 12 | background:-moz-element(#d);"></div> |
michael@0 | 13 | |
michael@0 | 14 | <div style="overflow:hidden; height:0;"> |
michael@0 | 15 | <div id="d" style="width:200px; height:200px; background:lime;"></div> |
michael@0 | 16 | </div> |
michael@0 | 17 | <svg height="0"> |
michael@0 | 18 | <clipPath id="c" clipPathUnits="userSpaceOnUse"> |
michael@0 | 19 | <rect x="50" y="50" width="50" height="50"></rect> |
michael@0 | 20 | </clipPath> |
michael@0 | 21 | </svg> |
michael@0 | 22 | </body> |
michael@0 | 23 | </html> |