diff --git a/test/test.html b/test/test.html
index 26cfda80d1729d2791f88fdfecd60f5fbd9adfac..85df0e97a0b2d534ef11145b711b3345c9a3c091 100644
--- a/test/test.html
+++ b/test/test.html
@@ -12,6 +12,7 @@
 
     <body>
         <main id="content"></main>
+        <aside id="othercontent"></aside>
 
         <script type="x-template/sideburns" data-name="list">
         <ul>
@@ -25,7 +26,14 @@
         mu.ready(function(){
             mu("#content").render("list",
                                   {
-                                    items: ["hello", "this", "is", "list"]
+                                    items: ["hello", "this", "is", "unordered", "list"]
+                                  },
+                                  {
+                                    useHtml: true
+                                  });
+            mu("#othercontent").render("<ol>[[* items ]]<li>[[item]]</li>[[/* items ]]</ol>",
+                                  {
+                                    items: ["hello", "this", "is", "ordered", "list"]
                                   },
                                   {
                                     useHtml: true