use of com.taobao.weex.dom.WXListDomObject in project weex-example by KalicyZhou.
the class WXListComponentTest method testParseTransforms.
@Test
public void testParseTransforms() throws Exception {
WXDiv div = WXDivTest.create();
ComponentTest.create(div);
WXDomObject dom = new WXListDomObject();
dom.getAttrs().put(WXListComponent.TRANSFORM, "scale(0.9,0.8);translate(10,20);opacity(0.5);rotate(100)");
component = create(div, dom);
ComponentTest.create(component);
}
Aggregations