Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Unified Diff: LayoutTests/transitions/flex-transitions.html

Issue 1300323003: Make flex-grow and flex-shrink interpolation continuous with 0 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update test Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/transitions/flex-transitions.html
diff --git a/LayoutTests/transitions/flex-transitions.html b/LayoutTests/transitions/flex-transitions.html
index a36efab5b5b3db2745abd34b0d4782269644a073..4d580a00c083327ebb931e8db406fcff23d3bd79 100644
--- a/LayoutTests/transitions/flex-transitions.html
+++ b/LayoutTests/transitions/flex-transitions.html
@@ -58,13 +58,13 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
[0.2, 'row1', '-webkit-flex', [140, 0, 0], 10],
- [0.2, 'column1', '-webkit-flex', [0, 0, 40], 10], // grow/shrink do not transition to/from zero
+ [0.2, 'column1', '-webkit-flex', [80, 0, 40], 10],
[0.2, 'negative1', '-webkit-flex', [100, 100, 60], 10],
- [0.2, 'no-flex1', '-webkit-flex', [0, 0, 0], 10], // grow/shrink do not transition to/from zero
+ [0.2, 'no-flex1', '-webkit-flex', [80, 0, 0], 10],
[0.8, 'row1', '-webkit-flex', [260, 0, 0], 10],
- [0.8, 'column1', '-webkit-flex', [0, 0, 160], 10], // grow/shrink do not transition to/from zero
+ [0.8, 'column1', '-webkit-flex', [20, 0, 160], 10],
[0.8, 'negative1', '-webkit-flex', [100, 100, 90], 10],
- [0.8, 'no-flex1', '-webkit-flex', [0, 0, 0], 10], // grow/shrink do not transition to/from zero
+ [0.8, 'no-flex1', '-webkit-flex', [20, 0, 0], 10],
];
function setupTest()

Powered by Google App Engine
This is Rietveld 408576698