assert css.no(Vendor.Mozilla);
}
@Test
public void colmunReverse() throws Exception {
MyCSS css = new MyCSS();
css.display.flex().direction.columnReverse();
assert css.has("flex-direction", "column-reverse");
assert css.has("-webkit-flex-direction", "column-reverse");
assert css.has("-webkit-box-direction", "reverse");
assert css.has("-webkit-box-orient", "vertical");
assert css.has("-ms-flex-direction", "column-reverse");
assert css.no(Vendor.Mozilla);
}