OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <style> | 3 <style> |
4 .absolutePosition { position: fixed; } | 4 .absolutePosition { position: fixed; } |
5 .float:before { float: right; content: ''; } | 5 .float:before { float: right; content: ''; } |
6 .float:first-letter { float: right; } | 6 .float:first-letter { float: right; } |
7 .inline::first-letter { content: ''; } | 7 .inline::first-letter { content: ''; } |
8 </style> | 8 </style> |
9 <script> | 9 <script> |
10 if (window.layoutTestController) | 10 if (window.layoutTestController) |
(...skipping 10 matching lines...) Expand all Loading... |
21 parent.setAttribute('class', 'inline'); | 21 parent.setAttribute('class', 'inline'); |
22 } | 22 } |
23 window.onload = startTest; | 23 window.onload = startTest; |
24 </script> | 24 </script> |
25 WebKit Bug 85759 - Crash in RenderBlock::updateFirstLetterStyle. | 25 WebKit Bug 85759 - Crash in RenderBlock::updateFirstLetterStyle. |
26 <div class="float" id="parent"> | 26 <div class="float" id="parent"> |
27 <div class="absolutePosition" id="child"></div> | 27 <div class="absolutePosition" id="child"></div> |
28 PASS if test does not crash. | 28 PASS if test does not crash. |
29 </div> | 29 </div> |
30 </html> | 30 </html> |
OLD | NEW |