Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="../../resources/testharness.js"></script> | |
| 3 <script src="../../resources/testharnessreport.js"></script> | |
| 4 <div id= "host"></div> | |
| 5 <script> | |
| 6 test(() => { | |
| 7 var root = host.attachShadow({ mode: 'open' }); | |
| 8 root.innerHTML = '<slot></slot>'; | |
| 9 assert_equals(getComputedStyle(root.querySelector('slot')).color, 'rgb(0, 0, 0 )'); | |
| 10 }, 'Getting CSS property value for a slot should not cause a crash'); | |
| 11 </script> | |
| OLD | NEW |