OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 div { | |
6 width: 100px; | |
7 height: 50px; | |
8 background: -webkit-linear-gradient(green, green) no-repeat; | |
9 background-size: 80px 40px; | |
10 background-position: 10px 10px; | |
11 } | |
12 </style> | |
13 </head> | |
14 <body> | |
15 <p>This tests that a floating text control respects shape-inside. You should see a green rectangle with no red.</p> | |
16 <div> | |
17 </div> | |
18 </body> | |
19 </html> | |
OLD | NEW |