Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / first-letter-table-cell-format-block-crash.html
blob5c9f8c2bfb91066f6e25bc8acbf3a79a871e0187
1 <!DOCTYPE html>
2 <html>
3 <style>
4 #test0 {
5 -webkit-column-count:2;
6 display: table-cell;
8 #test0::first-letter {
9 background-size: auto;
11 #test1 {
12 float: right;
14 </style>
15 <script>
16 onload = function() {
17 test0=document.createElement('div');
18 test0.setAttribute('id', 'test0');
19 document.body.appendChild(test0);
20 test1=document.createElement('div');
21 test1.setAttribute('id', 'test1');
22 test0.appendChild(test1);
23 test0.appendChild(document.createTextNode(unescape('%u3200A')));
24 document.designMode = 'on';
25 window.getSelection().setBaseAndExtent(test1, 0, test1, 0);
26 document.execCommand('InsertLineBreak');
27 document.execCommand('selectall');
28 document.execCommand('strikethrough');
29 document.execCommand('FormatBlock', false, '<'+'pre>');
31 document.body.offsetTop;
32 document.body.innerHTML = "PASS, if no crash or assert in debug build."
34 if (window.testRunner)
35 testRunner.dumpAsText();
37 </script>
38 <body>
39 </body>
40 </html>