Bläddra i källkod

LibWeb: Adjust ref-tests to reduce flakiness

These two ref-tests involve two boxes positioned in the same place, with
outlines. Outlines always have a border-radius, meaning that the corner
pixels are not 100% opaque. (It seems to be 254 instead of 255.) With
the test files painting two outlines, and the ref test only painting
one, slight changes in the background color of the page would make that
slight variation visible sometimes. So, let's avoid that inconsistency
by always painting one outline instead of two.
Sam Atkins 1 år sedan
förälder
incheckning
82ccc49b52

+ 1 - 1
Tests/LibWeb/Ref/grid-items-painting-order-ref.html

@@ -1,7 +1,7 @@
 <!doctype html><style type="text/css">
-* { outline: 1px solid black; }
 body { display: grid; }
 .bar {
+    outline: 1px solid black;
     grid-area: 1 / 1 / auto / auto;
     background: orange;
 }

+ 1 - 1
Tests/LibWeb/Ref/grid-items-painting-order.html

@@ -1,11 +1,11 @@
 <!doctype html><style type="text/css">
-* { outline: 1px solid black; }
 body { display: grid; }
 .foo {
     grid-area: 1 / 1 / auto / auto;
     background: pink;
 }
 .bar {
+    outline: 1px solid black;
     grid-area: 1 / 1 / auto / auto;
     background: orange;
 }

+ 1 - 1
Tests/LibWeb/Ref/item-with-negative-z-index-ref.html

@@ -1,7 +1,7 @@
 <!doctype html><style type="text/css">
-* { outline: 1px solid black; }
 body { display: grid; }
 .foo {
+    outline: 1px solid black;
     grid-area: 1 / 1 / auto / auto;
     background: pink;
 }

+ 1 - 1
Tests/LibWeb/Ref/item-with-negative-z-index.html

@@ -1,7 +1,7 @@
 <!doctype html><style type="text/css">
-* { outline: 1px solid black; }
 body { display: grid; }
 .foo {
+    outline: 1px solid black;
     grid-area: 1 / 1 / auto / auto;
     background: pink;
 }