updated tests
[org.ibex.core.git] / tests / rotate.t
diff --git a/tests/rotate.t b/tests/rotate.t
new file mode 100644 (file)
index 0000000..570edda
--- /dev/null
@@ -0,0 +1,40 @@
+<ibex xmlns:ui="ibex://ui">
+    <ui:box minwidth="300" minheight="300" fill="blue" align="center" cols="3">
+        ibex.log.warn("foog!");
+        ibex.ui.frame = thisbox;
+
+        // this thread makes things spin.
+        var rot = 0;
+        ibex.thread = function(f) { while(true) {
+             ibex.thread.yield();
+             if (ibex.math.floor(rot / 90) == rot / 90)
+               $top.transform = "rotate(" + rot + ")";
+             $bot.transform = "rotate(" + (-2 * rot) + ")";
+             rot += 1;
+       } }
+
+        <ui:box fill="orange" colspan="2" minwidth="200" minheight="100" id="top"> 
+<ui:box fill="green" width="100" height="18">
+<!--
+            <ui:box stroke="black" strokecolor="black" height="18" width="100" text="booya"/>
+-->
+</ui:box>
+
+        </ui:box>
+        <ui:box fill="green" rowspan="2" minwidth="100" id="foo"/>
+        <ui:box fill="red" minwidth="50" minheight="80" />
+        <ui:box fill="pink" cols="5" height="80">
+            <ui:box height="10" colspan="5"/>
+            <ui:box width="10"/>
+            <ui:box height="10" fill="white" maxwidth="100"/>
+            <ui:box height="10" fill="black" colspan="2" minwidth="100"/>
+            <ui:box width="10"/>
+        </ui:box>
+        <ui:box fill="purple" minwidth="70" minheight="50">
+            <ui:box shrink="true" fill="yellow" align="center" id="top">
+                <ui:box width="100" height="50" fill="red" id="bot"/>
+            </ui:box>
+        </ui:box>
+        <ui:box fill="yellow" colspan="2"/>
+    </ui:box>
+</ibex>