Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / content-property-change.html
blobd9eeb23078e4902f0576458b4aae0cec86430207
1 <!DOCTYPE html>
3 <style>
4 #actual:before {
5 content: "x";
6 quotes: "-" "-";
9 #actual.change:before {
10 content: "x" open-quote "y";
12 </style>
14 <p>
15 The below two lines should look identical.
16 </p>
17 <div id="actual"></div>
18 <div id="expected">x-y</div>
20 <script>
21 var div = document.getElementById('actual');
22 div.offsetTop;
23 div.className = 'change';
24 </script>