OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 .regionBox2 { width: 280px; height: 100px; } | 5 .regionBox2 { width: 280px; height: 100px; } |
6 | 6 |
7 #article { -webkit-flow-into: flow; } | 7 #article { -webkit-flow-into: flow; } |
8 #region { -webkit-flow-from: flow; } | 8 #region { -webkit-flow-from: flow; } |
9 | 9 |
10 @-webkit-region #region { span { background-color: red } }; | 10 @-webkit-region #region { span { background-color: red } }; |
(...skipping 22 matching lines...) Expand all Loading... |
33 <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=78298">78298</a
>: Crash in RenderFlowThread::setRegionBoxesRegionStyle</p> | 33 <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=78298">78298</a
>: Crash in RenderFlowThread::setRegionBoxesRegionStyle</p> |
34 <p> This test PASSES if it does not CRASH or ASSERT.</p> | 34 <p> This test PASSES if it does not CRASH or ASSERT.</p> |
35 <div id="article"> | 35 <div id="article"> |
36 <li id="li"> | 36 <li id="li"> |
37 <p id="p"></p> | 37 <p id="p"></p> |
38 </li> | 38 </li> |
39 </div> | 39 </div> |
40 <div id="region" class="regionBox2"></div> | 40 <div id="region" class="regionBox2"></div> |
41 </body> | 41 </body> |
42 </html> | 42 </html> |
OLD | NEW |