Diff
Modified: trunk/LayoutTests/ChangeLog (245249 => 245250)
--- trunk/LayoutTests/ChangeLog 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/ChangeLog 2019-05-13 21:06:56 UTC (rev 245250)
@@ -1,3 +1,28 @@
+2019-05-13 Megan Gardner <[email protected]>
+
+ Alter Conic Gradient tests to be less subject to noise
+ https://bugs.webkit.org/show_bug.cgi?id=197806
+ <rdar://problem/47272067>
+
+ Reviewed by Wenson Hsieh.
+
+ There is a currently a bug where there's a lot of detectable noise in
+ the green gradients. Replace them with the less noisy magenta or blue.
+ <rdar://problem/50682535>
+
+ * fast/gradients/conic-extended-stops-expected.html:
+ * fast/gradients/conic-extended-stops.html:
+ * fast/gradients/conic-from-angle-expected.html:
+ * fast/gradients/conic-from-angle.html:
+ * fast/gradients/conic-gradient-expected.html:
+ * fast/gradients/conic-gradient-extended-stops-expected.html:
+ * fast/gradients/conic-gradient-extended-stops.html:
+ * fast/gradients/conic-gradient.html:
+ * fast/gradients/conic-off-center-expected.html:
+ * fast/gradients/conic-off-center.html:
+ * fast/gradients/conic-two-hints-expected.html:
+ * fast/gradients/conic-two-hints.html:
+
2019-05-13 Antti Koivisto <[email protected]>
REGRESSION (r245208): compositing/shared-backing/sharing-bounds-non-clipping-shared-layer.html asserts
Modified: trunk/LayoutTests/fast/gradients/conic-extended-stops-expected.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-extended-stops-expected.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-extended-stops-expected.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -14,7 +14,7 @@
height: 25px;
width: 25px;
clear: left;
- background-color: green;
+ background-color: magenta;
}
#box3 {
height: 25px;
Modified: trunk/LayoutTests/fast/gradients/conic-extended-stops.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-extended-stops.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-extended-stops.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -4,7 +4,7 @@
#grad {
height: 50px;
width: 50px;
- background: conic-gradient(blue -50deg, blue 90deg, orange 90deg, orange 180deg, green 180deg, green 270deg, blue 270deg, blue 540deg);
+ background: conic-gradient(blue -50deg, blue 90deg, orange 90deg, orange 180deg, magenta 180deg, magenta 270deg, blue 270deg, blue 540deg);
}
</style>
</head>
Modified: trunk/LayoutTests/fast/gradients/conic-from-angle-expected.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-from-angle-expected.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-from-angle-expected.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -8,7 +8,7 @@
#top {
width: 0;
height: 0;
- border-left: 100px solid green;
+ border-left: 100px solid magenta;
border-right: 100px solid blue;
border-top: 100px solid yellow;
}
@@ -15,7 +15,7 @@
#bottom {
width: 0;
height: 0;
- border-left: 100px solid green;
+ border-left: 100px solid magenta;
border-right: 100px solid blue;
border-bottom: 100px solid orange;
}
Modified: trunk/LayoutTests/fast/gradients/conic-from-angle.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-from-angle.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-from-angle.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -10,7 +10,7 @@
background: conic-gradient(from 45deg,
blue 0deg, blue 90deg,
orange 0deg, orange 180deg,
- green 0deg, green 270deg,
+ magenta 0deg, magenta 270deg,
yellow 0deg, yellow 360deg);
}
.x {
Modified: trunk/LayoutTests/fast/gradients/conic-gradient-expected.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-gradient-expected.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-gradient-expected.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -9,27 +9,27 @@
#topleft {
width: 0;
height: 0;
- border-left: 100px solid rgb(0,32,0);
+ border-left: 100px solid rgb(0,0,32);
border-top: 100px solid rgb(0,0,0);
}
#topright {
width: 0;
height: 0;
- border-right: 100px solid rgb(0,192,0);
- border-top: 100px solid rgb(0,224,0);
+ border-right: 100px solid rgb(0,0,192);
+ border-top: 100px solid rgb(0,0,224);
}
#bottomleft {
clear: left;
width: 0;
height: 0;
- border-left: 100px solid rgb(0,64,0);
- border-bottom: 100px solid rgb(0,96,0);
+ border-left: 100px solid rgb(0,0,64);
+ border-bottom: 100px solid rgb(0,0,96);
}
#bottomright {
width: 0;
height: 0;
- border-right: 100px solid rgb(0,160,0);
- border-bottom: 100px solid rgb(0,128,0);
+ border-right: 100px solid rgb(0,0,159);
+ border-bottom: 100px solid rgb(0,0,128);
}
.box {
position: absolute;
Modified: trunk/LayoutTests/fast/gradients/conic-gradient-extended-stops-expected.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-gradient-extended-stops-expected.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-gradient-extended-stops-expected.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -9,27 +9,27 @@
#topleft {
width: 0;
height: 0;
- border-left: 100px solid rgb(0,80,0);
- border-top: 100px solid rgb(0,64,0);
+ border-left: 100px solid rgb(0,0,80);
+ border-top: 100px solid rgb(0,0,64);
}
#topright {
width: 0;
height: 0;
- border-right: 100px solid rgb(0,160,0);
- border-top: 100px solid rgb(0,176,0);
+ border-right: 100px solid rgb(0,0,159);
+ border-top: 100px solid rgb(0,0,175);
}
#bottomleft {
clear: left;
width: 0;
height: 0;
- border-left: 100px solid rgb(0,96,0);
- border-bottom: 100px solid rgb(0,112,0);
+ border-left: 100px solid rgb(0,0,96);
+ border-bottom: 100px solid rgb(0,0,112);
}
#bottomright {
width: 0;
height: 0;
- border-right: 100px solid rgb(0,144,0);
- border-bottom: 100px solid rgb(0,128,0);
+ border-right: 100px solid rgb(0,0,143);
+ border-bottom: 100px solid rgb(0,0,128);
}
.box {
position: absolute;
Modified: trunk/LayoutTests/fast/gradients/conic-gradient-extended-stops.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-gradient-extended-stops.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-gradient-extended-stops.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -13,7 +13,7 @@
position: absolute;
width: 200px;
height: 200px;
- background-image: conic-gradient(lime -180deg, black 540deg);
+ background-image: conic-gradient(blue -180deg, black 540deg);
filter: url(#posterize);
}
Modified: trunk/LayoutTests/fast/gradients/conic-gradient.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-gradient.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-gradient.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -13,7 +13,7 @@
position: absolute;
width: 200px;
height: 200px;
- background-image: conic-gradient(lime, black);
+ background-image: conic-gradient(blue, black);
filter: url(#posterize);
}
Modified: trunk/LayoutTests/fast/gradients/conic-off-center-expected.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-off-center-expected.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-off-center-expected.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -14,7 +14,7 @@
height: 40px;
width: 10px;
clear: left;
- background-color: green;
+ background-color: magenta;
}
#box3 {
height: 40px;
Modified: trunk/LayoutTests/fast/gradients/conic-off-center.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-off-center.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-off-center.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -4,7 +4,7 @@
#grad {
height: 50px;
width: 50px;
- background: conic-gradient(at 10px 10px, blue 0deg, blue 90deg, orange 90deg, orange 180deg, green 180deg, green 270deg, blue 270deg, blue 360deg);
+ background: conic-gradient(at 10px 10px, blue 0deg, blue 90deg, orange 90deg, orange 180deg, magenta 180deg, magenta 270deg, blue 270deg, blue 360deg);
}
</style>
</head>
Modified: trunk/LayoutTests/fast/gradients/conic-two-hints-expected.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-two-hints-expected.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-two-hints-expected.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -19,7 +19,7 @@
height: 25px;
width: 25px;
clear: left;
- background-color: green;
+ background-color: magenta;
}
</style>
</head>
Modified: trunk/LayoutTests/fast/gradients/conic-two-hints.html (245249 => 245250)
--- trunk/LayoutTests/fast/gradients/conic-two-hints.html 2019-05-13 20:52:04 UTC (rev 245249)
+++ trunk/LayoutTests/fast/gradients/conic-two-hints.html 2019-05-13 21:06:56 UTC (rev 245250)
@@ -4,7 +4,7 @@
#grad {
height: 50px;
width: 50px;
- background: conic-gradient(blue 0deg 90deg, green 90deg 180deg, orange 180deg 360deg);
+ background: conic-gradient(blue 0deg 90deg, magenta 90deg 180deg, orange 180deg 360deg);
}
</style>
</head>