Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-conditional/container-queries/crashtests/chrome-bug-1505250-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>::first-letter depending on size container query with changing list-style-type</title>
<style>
div::first-letter{
color: green;
}
div:only-of-type {
container-type: size;
list-style: my-circle inside;
}
</style>
<div>X
<div></div>
<script>document.body.offsetTop</script>
</div>