mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +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>
|