OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 div { | 4 div { |
5 border: 10px red solid; | 5 border: 10px red solid; |
6 width: 80px; | 6 width: 80px; |
7 height: 80px; | 7 height: 80px; |
8 margin-top: 10px; | 8 margin-top: 10px; |
9 } | 9 } |
10 #test1, #test2 { | 10 #test1, #test2 { |
(...skipping 10 matching lines...) Expand all Loading... |
21 border-radius: 0px 30px 0px 0px; | 21 border-radius: 0px 30px 0px 0px; |
22 } | 22 } |
23 #test2 { | 23 #test2 { |
24 border-top-left-radius: -120px; | 24 border-top-left-radius: -120px; |
25 border-top-right-radius: 30px; | 25 border-top-right-radius: 30px; |
26 } | 26 } |
27 </style> | 27 </style> |
28 </head> | 28 </head> |
29 <script> | 29 <script> |
30 if (window.testRunner) | 30 if (window.testRunner) |
31 window.testRunner.dumpAsText(true); | 31 window.testRunner.dumpAsTextWithPixelResults(); |
32 </script> | 32 </script> |
33 <body> | 33 <body> |
34 <div id="reference1"></div> | 34 <div id="reference1"></div> |
35 <div id="test1"></div> | 35 <div id="test1"></div> |
36 <div id="reference2"></div> | 36 <div id="reference2"></div> |
37 <div id="test2"></div> | 37 <div id="test2"></div> |
38 </p> | 38 </p> |
39 </body> | 39 </body> |
40 </html> | 40 </html> |
OLD | NEW |