Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-lists/before-after-selectors-on-code-element-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html
<head>
<style>
code:before {
content: counter(dummy,circle);
}
code:after {
content: counter(dummy,square);
}
</style>
</head>
<body>
<code>PASSED</code>
</body>
</html>