Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / quotes.html
blob772375fbfc5b33bff9371eed21dc1c065905c264
1 <!DOCTYPE html>
2 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
3 <script>
4 function repaintTest()
6 document.getElementById('q1').className = 'q-unchanged';
7 document.getElementById('q2').className = 'q-changed';
9 window.onload = runRepaintTest;
10 </script>
11 <style>
12 .q {
13 quotes: '<' '>';
15 .q-changed {
16 quotes: '{' '}';
18 .q-unchanged {
19 quotes: '<' '>';
21 </style>
22 <div><q id="q1" class="q">quote 1</q></div>
23 <div><q id="q2" class="q">quote 2</q></div>