| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../../resources/js-test.js"></script> | 2 <script src="../resources/js-test.js"></script> |
| 3 <script src="resources/shadow-dom.js"></script> | 3 <script src="../fast/dom/shadow/resources/shadow-dom.js"></script> |
| 4 <style> | 4 <style> |
| 5 div { | 5 div { |
| 6 background-color: white; | 6 background-color: white; |
| 7 } | 7 } |
| 8 | 8 |
| 9 div#shadow-host:focus { | 9 div#shadow-host:focus { |
| 10 background-color: green; | 10 background-color: green; |
| 11 } | 11 } |
| 12 </style> | 12 </style> |
| 13 <body> | 13 <body> |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 backgroundColorShouldBe('shadow-host', 'rgb(0, 128, 0)'); | 136 backgroundColorShouldBe('shadow-host', 'rgb(0, 128, 0)'); |
| 137 backgroundColorShouldBe('shadow-host/inner-shadow-host', 'rgb(255, 255, 0)')
; | 137 backgroundColorShouldBe('shadow-host/inner-shadow-host', 'rgb(255, 255, 0)')
; |
| 138 | 138 |
| 139 input3.focus(); | 139 input3.focus(); |
| 140 backgroundColorShouldBe('shadow-host', 'rgb(0, 128, 0)'); | 140 backgroundColorShouldBe('shadow-host', 'rgb(0, 128, 0)'); |
| 141 backgroundColorShouldBe('shadow-host/inner-shadow-host', 'rgb(0, 0, 255)'); | 141 backgroundColorShouldBe('shadow-host/inner-shadow-host', 'rgb(0, 0, 255)'); |
| 142 } | 142 } |
| 143 | 143 |
| 144 testNestedDistribution(); | 144 testNestedDistribution(); |
| 145 </script> | 145 </script> |
| OLD | NEW |