added some tests
[org.ibex.core.git] / tests / test2.t
diff --git a/tests/test2.t b/tests/test2.t
new file mode 100644 (file)
index 0000000..3dcc5e3
--- /dev/null
@@ -0,0 +1,43 @@
+<ibex xmlns:ui="ibex://ui">
+    <ui:box width="300" height="300" packed="false">
+        ibex.ui.frame = thisbox;
+
+        <ui:box fill="red" width="50" height="50" id="red" x="100" y="100" packed="false"/>
+
+        // 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) + ")";
+             $red.fill = "red";
+             ibex.thread.yield();
+             $red.fill = "green";
+             ibex.thread.yield();
+             rot += 1;
+       } }
+<!--
+        <ui:box fill="orange" colspan="2" minwidth="200" minheight="100" id="top" x="200" y="200"> 
+            <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>