| OLD | NEW |
| 1 Tests that user can mutate author shadow DOM by means of elements panel. | 1 Tests that user can mutate author shadow DOM by means of elements panel. |
| 2 | 2 |
| 3 | 3 |
| 4 Running: testSetUp | 4 Running: testSetUp |
| 5 | 5 |
| 6 Running: testSetAuthorShadowDOMElementAttribute | 6 Running: testSetAuthorShadowDOMElementAttribute |
| 7 ==== before ==== | 7 ==== before ==== |
| 8 - <div id="testSetAuthorShadowDOMElementAttribute"> | 8 - <div id="testSetAuthorShadowDOMElementAttribute"> |
| 9 - #shadow-root (open) | 9 - #shadow-root (open) |
| 10 <div foo="attribute value" id="shadow-node-to-set-attribute"></div> | 10 <div foo="attribute value" id="shadow-node-to-set-attribute"></div> |
| 11 </div> | 11 </div> |
| 12 ==== after ==== | 12 ==== after ==== |
| 13 - <div id="testSetAuthorShadowDOMElementAttribute"> | 13 - <div id="testSetAuthorShadowDOMElementAttribute"> |
| 14 - #shadow-root (open) | 14 - #shadow-root (open) |
| 15 <div id="shadow-node-to-set-attribute" bar="edited attribute"></div> | 15 <div id="shadow-node-to-set-attribute" bar="edited attribute"></div> |
| 16 </div> | 16 </div> |
| 17 | 17 |
| 18 Running: testEditShadowDOMAsHTML | |
| 19 ==== before ==== | |
| 20 - <div id="testEditAuthorShadowDOMAsHTML"> | |
| 21 - #shadow-root (open) | |
| 22 <div id="authorShadowDOMElement"></div> | |
| 23 </div> | |
| 24 <div id="authorShadowDOMElement"></div> | |
| 25 ==== after ==== | |
| 26 - <div id="testEditAuthorShadowDOMAsHTML"> | |
| 27 - #shadow-root (open) | |
| 28 - <span foo="shadow-span"> | |
| 29 <span id="inner-shadow-span">Shadow span contents</span> | |
| 30 </span> | |
| 31 </div> | |
| 32 | |
| OLD | NEW |