| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../resources/testharness.js"></script> | 2 <script src="../../resources/testharness.js"></script> |
| 3 <script src="../../resources/testharnessreport.js"></script> | 3 <script src="../../resources/testharnessreport.js"></script> |
| 4 <marquee></marquee> | 4 <marquee></marquee> |
| 5 <script> | 5 <script> |
| 6 var marquee = document.getElementsByTagName('marquee')[0]; | 6 var marquee = document.getElementsByTagName('marquee')[0]; |
| 7 test(function() { | 7 test(function() { |
| 8 assert_equals(marquee.shadowRoot, null); | 8 assert_equals(marquee.shadowRoot, null); |
| 9 }, 'Marquee shadow-root should not be accessible'); | 9 }, 'Marquee shadow-root should not be accessible'); |
| 10 </script> | 10 </script> |
| OLD | NEW |