Bug 1635818 - Fix some conic gradient WPT accidentally passing when conic gradients are unsupported. r=emilio

Differential Revision: https://phabricator.services.mozilla.com/D74070
This commit is contained in:
Tim Nguyen 2020-05-06 16:15:12 +00:00
Родитель 94b15f6444
Коммит 55dda5f1b8
3 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -4,4 +4,4 @@
<link rel="help" href="https://drafts.csswg.org/css-images-4/#color-stop-syntax">
<meta name="assert" content="Color stops with two positions are equivalent to two color stops with the same color">
<link rel="match" href="multiple-position-color-stop-conic-2-ref.html">
<div style="background: conic-gradient(red 0% 25%, blue 25% 75%, green 75% 100%); width: 100px; height: 100px;"><br></div>
<div style="background-image: conic-gradient(red 0% 25%, blue 25% 75%, green 75% 100%); background-color: orange; width: 100px; height: 100px;"><br></div>

Просмотреть файл

@ -8,6 +8,7 @@
#gradient {
width: 200px;
height: 200px;
background-color: red;
background-image: repeating-conic-gradient(black 0 25%, white 25% 50%);
}
</style>

Просмотреть файл

@ -8,6 +8,7 @@
#gradient {
width: 200px;
height: 200px;
background-color: red;
background-size: 20% 20%;
background-image: conic-gradient(black 0 25%, white 0 50%, black 0 75%, white 0);
}