diff --git a/test/lost-move.js b/test/lost-move.js index 896c1504..ac68869b 100644 --- a/test/lost-move.js +++ b/test/lost-move.js @@ -42,4 +42,15 @@ describe('lost-move', function() { ' + 60px); }' ); }); + it('supports retaining gutter set by lost-column', function() { + check( + 'a { lost-column: 1/3 0 0} \n' + + 'a { lost-move: 1/3}', + 'a { width: calc(99.999999% * 1/3); position: relative; left: calc(99.999999% * 1/3)}\n' + + 'a:nth-child(n) { float: left; margin-right: 0; clear: none}\n' + + 'a:last-child { margin-right: 0}\n' + + 'a:nth-child(0n) { margin-right: 0}\n' + + 'a:nth-child(0n + 1) { clear: left}' + ); + }); });