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 </style> | 9 </style> |
10 </head> | 10 </head> |
11 <body> | 11 <body> |
12 <p>Bug <a href="http://webkit.org/b/103477">103477</a>: Make | 12 <p>Bug <a href="http://webkit.org/b/103477">103477</a>: Make |
13 NodeRenderingContext::parentRenderer and nextRenderer top layer aware | 13 NodeRenderingContext::parentRenderer and nextRenderer top layer aware |
14 <p>The test passes if you see a green rectangle in the center of the viewport. | 14 <p>The test passes if you see a green rectangle in the center of the viewport. |
15 <dialog id="dialog"></dialog> | 15 <dialog id="dialog"></dialog> |
16 <script> | 16 <script> |
17 document.getElementById('dialog').showModal(); | 17 document.getElementById('dialog').showModal(); |
18 </script> | 18 </script> |
19 </body> | 19 </body> |
20 </html> | 20 </html> |
OLD | NEW |