| OLD | NEW |
| (Empty) |
| 1 <style> | |
| 2 .blue { border: 1px solid blue; } | |
| 3 .orange { border: 1px solid orange; } | |
| 4 .repeat { margin: 8px; } | |
| 5 </style> | |
| 6 <span style="color: red">10</span> | |
| 7 <template repeat="{{ list }}"></template> | |
| 8 <div class="blue repeat">first</div> | |
| 9 <div class="orange repeat">second</div> | |
| 10 <template if="{{ test }}"></template> | |
| 11 Hello World | |
| 12 <template if="{{ testFalse }}"></template> | |
| 13 <template repeat="{{ nullInstances }}"></template> | |
| 14 <div>10 test redblue test</div> | |
| 15 <a href="http://www.google.com/">http://www.google.com/</a> | |
| 16 <span on-test-event="handleTestEvent"> | |
| 17 <span id="target">Test event handler: event dispatch success</span> | |
| 18 </span> | |
| 19 <div class="[[ className ]]">[[ url ]]</div> | |
| 20 | |
| OLD | NEW |