tenfourfox/layout/style/crashtests/1153693-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

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>