Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <html><head>
2 <style>
3 blockquote::first-letter {float: right;}
4 </style>
5 <title>
6 Testcase bug - Crash [@ nsFrameList::DestroyFrames] on reload with -moz-column-count, -moz-inline-block and blockquote::first-letter
7 </title>
8 </head>
9 <body>
10 This page should not crash on reload
11 <div style=" -moz-column-count: 2;">
12 <span style="display: table;"></span>
13 <blockquote style="display: -moz-inline-block;">anonymous text</blockquote>
14 </div>
16 <script>
17 document.location.reload();
18 </script>
20 </body>
21 </html>