OLD | NEW |
1 <style> | 1 <style> |
2 body { background-image: -webkit-gradient(linear, left top, left bottom, fro
m(black), to(white)); } | 2 body { background-image: linear-gradient(black, white); } |
3 p { background-color: white; } | 3 p { background-color: white; } |
4 </style> | 4 </style> |
5 <body> | 5 <body> |
6 <p style="background-color: white;"> | 6 <p style="background-color: white;"> |
7 Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=18445">http
s://bugs.webkit.org/show_bug.cgi?id=18445</a> | 7 Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=18445">http
s://bugs.webkit.org/show_bug.cgi?id=18445</a> |
8 Assertion failure in CSSGradientValue::image() when the body element has
a background gradient</i>. | 8 Assertion failure in CSSGradientValue::image() when the body element has
a background gradient</i>. |
9 </p> | 9 </p> |
10 <p> | 10 <p> |
11 The test passes if the root element’s background is a linear | 11 The test passes if the root element’s background is a linear |
12 gradient from black at the top to white at the bottom, and no assertion | 12 gradient from black at the top to white at the bottom, and no assertion |
13 failure occurs. | 13 failure occurs. |
14 </p> | 14 </p> |
15 </body> | 15 </body> |
OLD | NEW |