trisquel-icecat/icecat/testing/web-platform/tests/css/css-values/attr-crash.html
2025-10-06 02:35:48 -06:00

18 lines
489 B
HTML

<!DOCTYPE html>
<title>CSS Values and Units Test: attr</title>
<meta name="assert" content="Test attr use after free crash">
<link rel="help" href="https://crbug.com/365802556">
<head>
<style>
#div {
--prop: attr(data-foo type(<ident>));
}
</style>
</head>
<body>
<div id="div" data-foo="aaa123\aaa123aaa">Content</div>
</body>
<script>
var elem = document.getElementById("div");
getComputedStyle(elem).getPropertyValue("--prop");
</script>