| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <link rel="import" href="../resources/dump-as-text.sky" /> | 2 <import src="../resources/dump-as-text.sky" /> |
| 3 <body> | 3 <body> |
| 4 <section id="a" is="x-a"></section> | 4 <section id="a" is="x-a"></section> |
| 5 Tests that type extension of a element whose DOM interface is HTMLElement does n
ot assert | 5 Tests that type extension of a element whose DOM interface is HTMLElement does n
ot assert |
| 6 <script> | 6 <script> |
| 7 var u = document.querySelector('#a'); | 7 var u = document.querySelector('#a'); |
| 8 var v = document.createElement('section', 'x-a'); | 8 var v = document.createElement('section', 'x-a'); |
| 9 </script> | 9 </script> |
| 10 </body> | 10 </body> |
| 11 </html> | 11 </html> |
| OLD | NEW |