Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / table-row-group-to-inline.html
blobe7a68f52283081a2cdeb15877ab1e09c5c2a7d7e
1 <style>
2 .first:before {
3 display: table-row-group;
4 content: "hello";
7 .second:before {
8 display: inline;
9 content: "hello";
11 </style>
12 <span>This test passes if it does not crash, and if we successfully destroy the table-section generated content.</span>
13 <br/>
14 <ul>
15 <li class="first" id="me">test</li>
16 </ul>
18 <script>
19 var thing = document.getElementById("me");
20 thing.className = "second";
21 </script>