Title: [274389] trunk/LayoutTests
Revision
274389
Author
[email protected]
Date
2021-03-13 08:26:21 -0800 (Sat, 13 Mar 2021)

Log Message

[css-flexbox] Fix incorrect relative path
https://bugs.webkit.org/show_bug.cgi?id=223120

Patch by Rob Buis <[email protected]> on 2021-03-13
Reviewed by Darin Adler.

LayoutTests/imported/w3c:

Fix incorrect relative path, because of this the comparisons
were not accurate, causing failures where the rendering was correct.

* web-platform-tests/css/css-flexbox/align-baseline-expected.html:
* web-platform-tests/css/css-flexbox/align-content_flex-start-expected.html:
* web-platform-tests/css/css-flexbox/align-content_space-between-expected.html:
* web-platform-tests/css/css-flexbox/align-self-015-expected.html:
* web-platform-tests/css/css-flexbox/auto-margins-003-expected.html:
* web-platform-tests/css/css-flexbox/flex-item-vertical-align-expected.html:
* web-platform-tests/css/css-flexbox/stretch-input-in-column-expected.html:

LayoutTests:

Enable tests that pass now.

* TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (274388 => 274389)


--- trunk/LayoutTests/ChangeLog	2021-03-13 16:20:39 UTC (rev 274388)
+++ trunk/LayoutTests/ChangeLog	2021-03-13 16:26:21 UTC (rev 274389)
@@ -1,3 +1,14 @@
+2021-03-13  Rob Buis  <[email protected]>
+
+        [css-flexbox] Fix incorrect relative path
+        https://bugs.webkit.org/show_bug.cgi?id=223120
+
+        Reviewed by Darin Adler.
+
+        Enable tests that pass now.
+
+        * TestExpectations:
+
 2021-03-13  Youenn Fablet  <[email protected]>
 
         Update RTCRtpScriptTransform to the latest version of the spec

Modified: trunk/LayoutTests/TestExpectations (274388 => 274389)


--- trunk/LayoutTests/TestExpectations	2021-03-13 16:20:39 UTC (rev 274388)
+++ trunk/LayoutTests/TestExpectations	2021-03-13 16:26:21 UTC (rev 274389)
@@ -1196,17 +1196,13 @@
 webkit.org/b/136754 css3/flexbox/csswg/ttwf-reftest-flex-order.html [ ImageOnlyFailure ]
 webkit.org/b/136754 css3/flexbox/csswg/ttwf-reftest-flex-wrap-reverse.html [ ImageOnlyFailure ]
 webkit.org/b/136754 css3/flexbox/csswg/ttwf-reftest-flex-wrap.html [ ImageOnlyFailure ]
-webkit.org/b/136754 imported/w3c/web-platform-tests/css/css-flexbox/align-self-015.html [ ImageOnlyFailure ]
-webkit.org/b/136754 imported/w3c/web-platform-tests/css/css-flexbox/auto-margins-003.html [ ImageOnlyFailure ]
 webkit.org/b/136754 imported/w3c/web-platform-tests/css/css-flexbox/canvas-dynamic-change-001.html [ Failure ]
 webkit.org/b/136754 imported/w3c/web-platform-tests/css/css-flexbox/css-flexbox-img-expand-evenly.html [ ImageOnlyFailure ]
 webkit.org/b/136754 imported/w3c/web-platform-tests/css/css-flexbox/flex-aspect-ratio-img-row-015.html [ ImageOnlyFailure ]
-webkit.org/b/136754 imported/w3c/web-platform-tests/css/css-flexbox/flex-item-vertical-align.html [ ImageOnlyFailure ]
 webkit.org/b/136754 imported/w3c/web-platform-tests/css/css-flexbox/flexbox-safe-overflow-position-001.html [ ImageOnlyFailure ]
 webkit.org/b/136754 imported/w3c/web-platform-tests/css/css-flexbox/percentage-max-height-002.html [ ImageOnlyFailure ]
 webkit.org/b/210243 imported/w3c/web-platform-tests/css/css-flexbox/percentage-size-quirks-002.html [ Failure ]
 webkit.org/b/136754 imported/w3c/web-platform-tests/css/css-flexbox/scrollbars-no-margin.html [ ImageOnlyFailure ]
-webkit.org/b/136754 imported/w3c/web-platform-tests/css/css-flexbox/stretch-input-in-column.html [ ImageOnlyFailure ]
 
 # grid layout tests
 imported/w3c/web-platform-tests/css/css-grid/abspos/orthogonal-positioned-grid-descendants-010.html [ Pass Failure ]
@@ -4019,9 +4015,7 @@
 # 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_flex-start.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_space-between.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 ]
@@ -4029,7 +4023,6 @@
 webkit.org/b/221468 imported/w3c/web-platform-tests/css/css-flexbox/flexbox-align-self-vert-rtl-005.xhtml [ ImageOnlyFailure ]
 
 # align baseline in flexbox.
-webkit.org/b/221478 imported/w3c/web-platform-tests/css/css-flexbox/align-baseline.html [ ImageOnlyFailure ]
 webkit.org/b/221478 imported/w3c/web-platform-tests/css/css-flexbox/flexbox-align-self-baseline-horiz-001a.xhtml [ ImageOnlyFailure ]
 webkit.org/b/221478 imported/w3c/web-platform-tests/css/css-flexbox/flexbox-align-self-baseline-horiz-001b.xhtml [ ImageOnlyFailure ]
 webkit.org/b/221478 imported/w3c/web-platform-tests/css/css-flexbox/flexbox-align-self-baseline-horiz-006.xhtml [ ImageOnlyFailure ]

Modified: trunk/LayoutTests/imported/w3c/ChangeLog (274388 => 274389)


--- trunk/LayoutTests/imported/w3c/ChangeLog	2021-03-13 16:20:39 UTC (rev 274388)
+++ trunk/LayoutTests/imported/w3c/ChangeLog	2021-03-13 16:26:21 UTC (rev 274389)
@@ -1,3 +1,21 @@
+2021-03-13  Rob Buis  <[email protected]>
+
+        [css-flexbox] Fix incorrect relative path
+        https://bugs.webkit.org/show_bug.cgi?id=223120
+
+        Reviewed by Darin Adler.
+
+        Fix incorrect relative path, because of this the comparisons
+        were not accurate, causing failures where the rendering was correct.
+
+        * web-platform-tests/css/css-flexbox/align-baseline-expected.html:
+        * web-platform-tests/css/css-flexbox/align-content_flex-start-expected.html:
+        * web-platform-tests/css/css-flexbox/align-content_space-between-expected.html:
+        * web-platform-tests/css/css-flexbox/align-self-015-expected.html:
+        * web-platform-tests/css/css-flexbox/auto-margins-003-expected.html:
+        * web-platform-tests/css/css-flexbox/flex-item-vertical-align-expected.html:
+        * web-platform-tests/css/css-flexbox/stretch-input-in-column-expected.html:
+
 2021-03-13  Antoine Quint  <[email protected]>
 
         Unreviewed. Merge the changes to the perspective interpolation test that resulted

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-baseline-expected.html (274388 => 274389)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-baseline-expected.html	2021-03-13 16:20:39 UTC (rev 274388)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-baseline-expected.html	2021-03-13 16:26:21 UTC (rev 274389)
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <html>
-<link href="" rel="stylesheet">
+<link href="" rel="stylesheet">
 <style>
 body {
     margin: 0;

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_flex-start-expected.html (274388 => 274389)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_flex-start-expected.html	2021-03-13 16:20:39 UTC (rev 274388)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_flex-start-expected.html	2021-03-13 16:26:21 UTC (rev 274389)
@@ -2,7 +2,7 @@
 <html>
 <head>
 <title>CSS Flexible Box Test: align-content_flex-start</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-between-expected.html (274388 => 274389)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_space-between-expected.html	2021-03-13 16:20:39 UTC (rev 274388)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-content_space-between-expected.html	2021-03-13 16:26:21 UTC (rev 274389)
@@ -2,7 +2,7 @@
 <html>
 <head>
 <title>CSS Flexible Box Test: align-content_space-between</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-self-015-expected.html (274388 => 274389)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-self-015-expected.html	2021-03-13 16:20:39 UTC (rev 274388)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/align-self-015-expected.html	2021-03-13 16:26:21 UTC (rev 274389)
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link href="" rel="stylesheet">
+<link href="" rel="stylesheet">
  <style>
     .flexbox {
       border: 1px solid black;

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/auto-margins-003-expected.html (274388 => 274389)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/auto-margins-003-expected.html	2021-03-13 16:20:39 UTC (rev 274388)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/auto-margins-003-expected.html	2021-03-13 16:26:21 UTC (rev 274389)
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link href="" rel="stylesheet">
+<link href="" rel="stylesheet">
  <style>
     .flexbox {
       border: 1px solid black;

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/flex-item-vertical-align-expected.html (274388 => 274389)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/flex-item-vertical-align-expected.html	2021-03-13 16:20:39 UTC (rev 274388)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/flex-item-vertical-align-expected.html	2021-03-13 16:26:21 UTC (rev 274389)
@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<link href="" rel="stylesheet">
+<link href="" rel="stylesheet">
 
 <style>
 .flexbox {

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/stretch-input-in-column-expected.html (274388 => 274389)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/stretch-input-in-column-expected.html	2021-03-13 16:20:39 UTC (rev 274388)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-flexbox/stretch-input-in-column-expected.html	2021-03-13 16:26:21 UTC (rev 274389)
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <html>
-<link href="" rel="stylesheet">
+<link href="" rel="stylesheet">
 <style>
 .flexbox {
     background-color: grey;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to