summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/before-after-selectors-on-code-element-crash.html
blob: cc0e16e766f15acdb872873203ceab2995d9e243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<link rel="help" href="http://bugs.webkit.org/show_bug.cgi?id=11197">
<html
<head>
<style>
    code:before {
      content: counter(dummy,circle);
    }
    code:after {
      content: counter(dummy,square);
    }
</style>
</head>
<body>
<code>PASSED</code>
</body>
</html>