MyCSS css = new MyCSS();
css.transform.rotateZ(10, deg);
assert css.has("-webkit-transform", "rotateZ(10deg)");
assert css.has("transform", "rotateZ(10deg)");
assert css.countProperty() == 2;
}
@Test
public void translate() throws Exception {
MyCSS css = new MyCSS();