Changeset 213315 in webkit
- Timestamp:
- Mar 2, 2017, 3:49:26 PM (8 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r213314 r213315 1 2017-03-02 Ryan Haddad <ryanhaddad@apple.com> 2 3 Update fast/css/flex-calculated-value.html after r213305. 4 https://bugs.webkit.org/show_bug.cgi?id=169100 5 6 Unreviewed test gardening. 7 8 * fast/css/flex-calculated-value-expected.txt: 9 * fast/css/flex-calculated-value.html: 10 1 11 2017-03-02 Ryan Haddad <ryanhaddad@apple.com> 2 12 -
trunk/LayoutTests/fast/css/flex-calculated-value-expected.txt
r176674 r213315 7 7 testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3)' 8 8 PASS testDiv.style['flex'] is "6 6 0px" 9 PASS window.getComputedStyle(testDiv).getPropertyValue('flex') is "6 6 0 px"9 PASS window.getComputedStyle(testDiv).getPropertyValue('flex') is "6 6 0%" 10 10 testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3) calc(10% * 2)' 11 11 PASS testDiv.style['flex'] is "6 6 calc(20%)" … … 13 13 testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3) calc(3 - 3)' 14 14 PASS testDiv.style['flex'] is "6 6 0px" 15 PASS window.getComputedStyle(testDiv).getPropertyValue('flex') is "6 6 0 px"15 PASS window.getComputedStyle(testDiv).getPropertyValue('flex') is "6 6 0%" 16 16 PASS successfullyParsed is true 17 17 -
trunk/LayoutTests/fast/css/flex-calculated-value.html
r176674 r213315 11 11 evalAndLog("testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3)'"); 12 12 shouldBeEqualToString("testDiv.style['flex']", "6 6 0px"); 13 shouldBeEqualToString("window.getComputedStyle(testDiv).getPropertyValue('flex')", "6 6 0 px");13 shouldBeEqualToString("window.getComputedStyle(testDiv).getPropertyValue('flex')", "6 6 0%"); 14 14 15 15 evalAndLog("testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3) calc(10% * 2)'"); … … 19 19 evalAndLog("testDiv.style['flex'] = 'calc(2 * 3) calc(2 * 3) calc(3 - 3)'"); 20 20 shouldBeEqualToString("testDiv.style['flex']", "6 6 0px"); 21 shouldBeEqualToString("window.getComputedStyle(testDiv).getPropertyValue('flex')", "6 6 0 px");21 shouldBeEqualToString("window.getComputedStyle(testDiv).getPropertyValue('flex')", "6 6 0%"); 22 22 23 23 </script>
Note:
See TracChangeset
for help on using the changeset viewer.