Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-pseudo/crashtests/first-letter-inherit-position.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Invalid position property in ::first-letter should not crash</title>
<style>
div::first-letter {
position: inherit;
}
div::after {
quotes: "a" "b";
content: open-quote;
}
</style>
<div></div>
<div></div>