Title: [213315] trunk/LayoutTests
Revision
213315
Author
[email protected]
Date
2017-03-02 15:49:26 -0800 (Thu, 02 Mar 2017)

Log Message

Update fast/css/flex-calculated-value.html after r213305.
https://bugs.webkit.org/show_bug.cgi?id=169100

Unreviewed test gardening.

* fast/css/flex-calculated-value-expected.txt:
* fast/css/flex-calculated-value.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (213314 => 213315)


--- trunk/LayoutTests/ChangeLog	2017-03-02 23:49:19 UTC (rev 213314)
+++ trunk/LayoutTests/ChangeLog	2017-03-02 23:49:26 UTC (rev 213315)
@@ -1,5 +1,15 @@
 2017-03-02  Ryan Haddad  <[email protected]>
 
+        Update fast/css/flex-calculated-value.html after r213305.
+        https://bugs.webkit.org/show_bug.cgi?id=169100
+
+        Unreviewed test gardening.
+
+        * fast/css/flex-calculated-value-expected.txt:
+        * fast/css/flex-calculated-value.html:
+
+2017-03-02  Ryan Haddad  <[email protected]>
+
         Mark fast/regions/inline-block-inside-anonymous-overflow-with-covered-controls.html as flaky.
         https://bugs.webkit.org/show_bug.cgi?id=168933
 

Modified: trunk/LayoutTests/fast/css/flex-calculated-value-expected.txt (213314 => 213315)


--- trunk/LayoutTests/fast/css/flex-calculated-value-expected.txt	2017-03-02 23:49:19 UTC (rev 213314)
+++ trunk/LayoutTests/fast/css/flex-calculated-value-expected.txt	2017-03-02 23:49:26 UTC (rev 213315)
@@ -6,13 +6,13 @@
 PASS testDiv.style['flex'] is ""
 testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3)'
 PASS testDiv.style['flex'] is "6 6 0px"
-PASS window.getComputedStyle(testDiv).getPropertyValue('flex') is "6 6 0px"
+PASS window.getComputedStyle(testDiv).getPropertyValue('flex') is "6 6 0%"
 testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3) calc(10% * 2)'
 PASS testDiv.style['flex'] is "6 6 calc(20%)"
 PASS window.getComputedStyle(testDiv).getPropertyValue('flex') is "6 6 20%"
 testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3) calc(3 - 3)'
 PASS testDiv.style['flex'] is "6 6 0px"
-PASS window.getComputedStyle(testDiv).getPropertyValue('flex') is "6 6 0px"
+PASS window.getComputedStyle(testDiv).getPropertyValue('flex') is "6 6 0%"
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/css/flex-calculated-value.html (213314 => 213315)


--- trunk/LayoutTests/fast/css/flex-calculated-value.html	2017-03-02 23:49:19 UTC (rev 213314)
+++ trunk/LayoutTests/fast/css/flex-calculated-value.html	2017-03-02 23:49:26 UTC (rev 213315)
@@ -10,7 +10,7 @@
 shouldBeEmptyString("testDiv.style['flex']");
 evalAndLog("testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3)'");
 shouldBeEqualToString("testDiv.style['flex']", "6 6 0px");
-shouldBeEqualToString("window.getComputedStyle(testDiv).getPropertyValue('flex')", "6 6 0px");
+shouldBeEqualToString("window.getComputedStyle(testDiv).getPropertyValue('flex')", "6 6 0%");
 
 evalAndLog("testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3) calc(10% * 2)'");
 shouldBeEqualToString("testDiv.style['flex']", "6 6 calc(20%)");
@@ -18,7 +18,7 @@
 
 evalAndLog("testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3) calc(3 - 3)'");
 shouldBeEqualToString("testDiv.style['flex']", "6 6 0px");
-shouldBeEqualToString("window.getComputedStyle(testDiv).getPropertyValue('flex')", "6 6 0px");
+shouldBeEqualToString("window.getComputedStyle(testDiv).getPropertyValue('flex')", "6 6 0%");
 
 </script>
 <script src=""
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to