blob: 76b6e473f06b788830748991a056d5f627d17315 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<title>CSS Masking: Test clip-path property when the page is zoomed</title>
<style>
#rect {
width: 200px;
height: 200px;
background: green;
clip-path: path(nonzero, 'M0,0 L200,0 L0,200');
}
</style>
<div id="rect"></div>
</html>
|