(e)
| 144 | const elem = container.querySelector('p'); |
| 145 | const body = iframe.contentDocument.body; |
| 146 | const getColour = (e) => |
| 147 | window.getComputedStyle(e, null).getPropertyValue('color'); |
| 148 | expect(getColour(elem)).toBe('rgb(0, 0, 0)'); |
| 149 | expect(getColour(body.querySelector('p'))).toBe('rgb(255, 0, 0)'); |
| 150 | }} |