| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <p>This test checks input's shadow root is not changed if input type is changed.
</p> | 7 <p>This test checks input's shadow root is not changed if input type is changed.
</p> |
| 8 <pre id="console"></pre> | 8 <pre id="console"></pre> |
| 9 <div id="container"></div> | 9 <div id="container"></div> |
| 10 | 10 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 newShadow = internals.shadowRoot(input); | 31 newShadow = internals.shadowRoot(input); |
| 32 | 32 |
| 33 debug(inputTypes[i]); | 33 debug(inputTypes[i]); |
| 34 shouldBe("newShadow", "shadow"); | 34 shouldBe("newShadow", "shadow"); |
| 35 } | 35 } |
| 36 } | 36 } |
| 37 | 37 |
| 38 doTest(); | 38 doTest(); |
| 39 var successfullyParsed = true; | 39 var successfullyParsed = true; |
| 40 </script> | 40 </script> |
| 41 <script src="../../js/resources/js-test-post.js"></script> | |
| 42 </body> | 41 </body> |
| 43 </html> | 42 </html> |
| OLD | NEW |