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