Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(653)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/backgrounds/body-generated-image-propagated-to-root.html

Issue 2746583003: Send deprecation messages for prefixed gradients now that it's possible. (Closed)
Patch Set: recommit Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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&rsquo;s background is a linear 11 The test passes if the root element&rsquo;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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698