mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-08 22:11:52 +00:00
23 lines
322 B
HTML
23 lines
322 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<style>
|
||
|
|
||
|
.a { clip-path: url(z); }
|
||
|
#x { clip-path: inherit; }
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="a">
|
||
|
<div class="a" id="x"></div>
|
||
|
</div>
|
||
|
<script>
|
||
|
getComputedStyle(document.getElementById("x"), "").clipPath;
|
||
|
</script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|