OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 #shape-inside { | |
6 position: relative; | |
7 top: 50px; | |
8 left: 50px; | |
9 width: 250px; | |
10 height: 250px; | |
11 font: 50px/1 Ahem, sans-serif; | |
12 color: green; | |
13 } | |
14 </style> | |
15 </head> | |
16 <body> | |
17 Requires Ahem font. Verifies that polygonal shapes with multiple coincident vertices produce | |
18 the same output as they would with only the unique vertices. This test shou ld display two | |
19 indentical solid green squares. | |
20 <div id="shape-inside">XXXX XXXX XXXX XXXX</div> | |
21 <div id="shape-inside">XXXX XXXX XXXX XXXX</div> | |
22 </body> | |
23 </html> | |
OLD | NEW |