| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 | 4 |
| 5 if (window.testRunner) | 5 if (window.testRunner) |
| 6 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
| 7 | 7 |
| 8 window.addEventListener('load', function() | 8 window.addEventListener('load', function() |
| 9 { | 9 { |
| 10 document.getElementsByTagName('keygen')[0].appendChild(document.createTextNo
de('FAIL')); | 10 document.getElementsByTagName('input')[0].appendChild(document.createTextNod
e('FAIL')); |
| 11 }, false); | 11 }, false); |
| 12 | 12 |
| 13 </script> | 13 </script> |
| 14 </head> | 14 </head> |
| 15 <body> | 15 <body> |
| 16 Children of an element are never rendered is it has a shadow DOM subtree.<br> | 16 Children of an element are never rendered if it has a shadow DOM subtree.<br> |
| 17 Should not see the word FAIL below.<br> | 17 Should not see the word FAIL below.<br> |
| 18 <keygen></keygen> | 18 <input type="datetime" /> |
| 19 </body> | 19 </body> |
| 20 </html> | 20 </html> |
| OLD | NEW |