summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css-generated-content/reset-content-to-initial.html
blob: 3e9ba4c5af13aeb0acdf0113469e6fc6dc7d0743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
    <title>Test HTML Page</title>
    <style type="text/css">
        dfn { content: "text"; content: initial; }
    </style>
    <script type="text/javascript">
        if (window.testRunner)
            testRunner.dumpAsText();
    </script>
</head>
<body>
    <p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=12061">bug 12061</a>.</p>
    <p>PASS: If this doesn't crash, the test has succeeded.</p>
    <dfn>dfn</dfn>
</body>
</html>