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