Sha256: f5d7453cf17fabcbaa1bdf72e1621ccc3916ee93e3e2b2fbd114415abf529ea4
Contents?: true
Size: 708 Bytes
Versions: 5
Compression:
Stored size: 708 Bytes
Contents
// https://github.com/less/less.js/issues/2798 .test-2798 when ((8+4) < 13) { regression: fixed; } .test-2798 when ((8+6) < 13) { regression: should not be visible; } .conditions-parser-1 when (8+4 < 13) { only-atomic: ok; } .conditions-parser-1 when (8+6 < 13) { only-atomic: should not be visible; } .conditions-parser-2 when (8+(5-1) < 13) { only-atomic-with-nested-parenthesis: ok; } .conditions-parser-2 when (8+(15-1) < 13) { only-atomic-with-nested-parenthesis: should not be visible; } .conditions-parser-3 when (8 < (13+1)) { only-atomic-nested-parenthesis-on-right: ok; } .conditions-parser-3 when (8 < (3+1)) { only-atomic-nested-parenthesis-on-right: should not be visible; }
Version data entries
5 entries across 5 versions & 2 rubygems