| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 dialog { | 5 dialog { |
| 6 background: green; | 6 background: green; |
| 7 border-color: green; | 7 border-color: green; |
| 8 } | 8 } |
| 9 div { | 9 div { |
| 10 display: table-column; | 10 display: table-column; |
| 11 } | 11 } |
| 12 </style> | 12 </style> |
| 13 </head> | 13 </head> |
| 14 <body> | 14 <body> |
| 15 <p>Bug <a href="http://webkit.org/b/103477">103477</a>: Make | 15 <p>Bug <a href="http://webkit.org/b/103477">103477</a>: Make |
| 16 NodeRenderingContext::parentRenderer and nextRenderer top layer aware | 16 NodeRenderingContext::parentRenderer and nextRenderer top layer aware |
| 17 <p>The test passes if you see a green rectangle in the center of the viewport. | 17 <p>The test passes if you see a green rectangle in the center of the viewport. |
| 18 <div> | 18 <div> |
| 19 <dialog id="dialog"></dialog> | 19 <dialog id="dialog"></dialog> |
| 20 </div> | 20 </div> |
| 21 <script> | 21 <script> |
| 22 document.getElementById('dialog').showModal(); | 22 document.getElementById('dialog').showModal(); |
| 23 </script> | 23 </script> |
| 24 </body> | 24 </body> |
| 25 </html> | 25 </html> |
| OLD | NEW |