Title: [275416] trunk/LayoutTests
Revision
275416
Author
[email protected]
Date
2021-04-02 03:59:39 -0700 (Fri, 02 Apr 2021)

Log Message

[css-flexbox] align-content issues
https://bugs.webkit.org/show_bug.cgi?id=221468

Reviewed by Ryosuke Niwa.

LayoutTests/imported/w3c:

* web-platform-tests/css/css-flexbox/align-content_center-expected.html: Fixed stylesheet link.
* web-platform-tests/css/css-flexbox/align-content_flex-end-expected.html: Ditto.
* web-platform-tests/css/css-flexbox/align-content_space-around-expected.html: Ditto.
* web-platform-tests/css/css-flexbox/align-content_stretch-expected.html: Ditto.

LayoutTests:

Fix the relative path to a stylesheet in 4 expected results. The tests were working as expected
but the expected results were wrong without those CSS rules.

* TestExpectations: Unskip 4 tests that should be passing now.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (275415 => 275416)


--- trunk/LayoutTests/ChangeLog	2021-04-02 10:44:16 UTC (rev 275415)
+++ trunk/LayoutTests/ChangeLog	2021-04-02 10:59:39 UTC (rev 275416)
@@ -1,3 +1,15 @@
+2021-04-02  Sergio Villar Senin  <[email protected]>
+
+        [css-flexbox] align-content issues
+        https://bugs.webkit.org/show_bug.cgi?id=221468
+
+        Reviewed by Ryosuke Niwa.
+
+        Fix the relative path to a stylesheet in 4 expected results. The tests were working as expected
+        but the expected results were wrong without those CSS rules.
+
+        * TestExpectations: Unskip 4 tests that should be passing now.
+
 2021-04-02  Philippe Normand  <[email protected]>
 
         REGRESSION(r268176): [GStreamer] media/video-orientation-canvas.html fails

Modified: trunk/LayoutTests/TestExpectations (275415 => 275416)


--- trunk/LayoutTests/TestExpectations	2021-04-02 10:44:16 UTC (rev 275415)
+++ trunk/LayoutTests/TestExpectations	2021-04-02 10:59:39 UTC (rev 275416)
@@ -4003,11 +4003,6 @@
 webkit.org/b/221477 imported/w3c/web-platform-tests/css/css-flexbox/flexbox_justifycontent-start.html [ ImageOnlyFailure ]
 webkit.org/b/221477 imported/w3c/web-platform-tests/css/css-flexbox/flexbox_justifycontent-start-rtl.html [ ImageOnlyFailure ]
 
-# align-content in flexbox.
-webkit.org/b/221468 imported/w3c/web-platform-tests/css/css-flexbox/align-content_center.html [ ImageOnlyFailure ]
-webkit.org/b/221468 imported/w3c/web-platform-tests/css/css-flexbox/align-content_flex-end.html [ ImageOnlyFailure ]
-webkit.org/b/221468 imported/w3c/web-platform-tests/css/css-flexbox/align-content_space-around.html [ ImageOnlyFailure ]
-webkit.org/b/221468 imported/w3c/web-platform-tests/css/css-flexbox/align-content_stretch.html [ ImageOnlyFailure ]
 
 webkit.org/b/221468 imported/w3c/web-platform-tests/css/css-flexbox/flexbox-align-self-horiz-002.xhtml [ ImageOnlyFailure ]
 webkit.org/b/221468 imported/w3c/web-platform-tests/css/css-flexbox/flexbox-align-self-vert-002.xhtml [ ImageOnlyFailure ]

Modified: trunk/LayoutTests/imported/w3c/ChangeLog (275415 => 275416)


--- trunk/LayoutTests/imported/w3c/ChangeLog	2021-04-02 10:44:16 UTC (rev 275415)
+++ trunk/LayoutTests/imported/w3c/ChangeLog	2021-04-02 10:59:39 UTC (rev 275416)
@@ -1,3 +1,15 @@
+2021-04-02  Sergio Villar Senin  <[email protected]>
+
+        [css-flexbox] align-content issues
+        https://bugs.webkit.org/show_bug.cgi?id=221468
+
+        Reviewed by Ryosuke Niwa.
+
+        * web-platform-tests/css/css-flexbox/align-content_center-expected.html: Fixed stylesheet link.
+        * web-platform-tests/css/css-flexbox/align-content_flex-end-expected.html: Ditto.
+        * web-platform-tests/css/css-flexbox/align-content_space-around-expected.html: Ditto.
+        * web-platform-tests/css/css-flexbox/align-content_stretch-expected.html: Ditto.
+
 2021-04-01  Rob Buis  <[email protected]>
 
         aspect-ratio not recomputed on hover

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_center-expected.html (275415 => 275416)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_center-expected.html	2021-04-02 10:44:16 UTC (rev 275415)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_center-expected.html	2021-04-02 10:59:39 UTC (rev 275416)
@@ -2,7 +2,7 @@
 <html>
 <head>
 <title>CSS Flexible Box Test: align-content_center</title>
-<link rel="stylesheet" href=""
+<link rel="stylesheet" href=""
 <style>
 #test {
   height: 200px;

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_flex-end-expected.html (275415 => 275416)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_flex-end-expected.html	2021-04-02 10:44:16 UTC (rev 275415)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_flex-end-expected.html	2021-04-02 10:59:39 UTC (rev 275416)
@@ -2,7 +2,7 @@
 <html>
 <head>
 <title>CSS Flexible Box Test: align-content_flex-end</title>
-<link rel="stylesheet" href=""
+<link rel="stylesheet" href=""
 <style>
 #test {
   height: 200px;

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_space-around-expected.html (275415 => 275416)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_space-around-expected.html	2021-04-02 10:44:16 UTC (rev 275415)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_space-around-expected.html	2021-04-02 10:59:39 UTC (rev 275416)
@@ -2,7 +2,7 @@
 <html>
 <head>
 <title>CSS Flexible Box Test: align-content_space-around</title>
-<link rel="stylesheet" href=""
+<link rel="stylesheet" href=""
 <style>
 #test {
   height: 210px;

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_stretch-expected.html (275415 => 275416)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_stretch-expected.html	2021-04-02 10:44:16 UTC (rev 275415)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_stretch-expected.html	2021-04-02 10:59:39 UTC (rev 275416)
@@ -2,7 +2,7 @@
 <html>
 <head>
 <title>CSS Flexible Box Test: align-content_stretch</title>
-<link rel="stylesheet" href=""
+<link rel="stylesheet" href=""
 <style>
 #test {
   height: 210px;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to