Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / render-quote-crash.html
blobea6c42c3f70b445a2102566ce424bd7c3acf305f
1 <!DOCTYPE html>
3 <head id='head'>!
4 <style>
5 .quote:first-letter { visibility: inherit; }
6 .quote { -webkit-appearance: button; }
7 </style>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
13 window.onload = function() {
14 var quote = document.createElement('q');
15 document.documentElement.appendChild(quote);
17 var quote3 = document.createElement('q');
18 quote3.setAttribute('class', 'quote');
19 quote.appendChild(quote3);
21 document.body.offsetTop;
22 body.textContent = head.innerHTML;
24 </script>
25 </head>
27 <body id='body'>
28 Test passes if it does not CRASH.
30 <style>
31 * {
32 justify-items: center;
33 quotes: "a" "b" "c" "d";
35 </style>
36 </body>