| OLD | NEW |
| (Empty) |
| 1 Tests that elements panel updates dom tree structure upon setting attribute. | |
| 2 | |
| 3 | |
| 4 Running: testDumpInitial | |
| 5 ========= Original ======== | |
| 6 <div id="node"></div> | |
| 7 | |
| 8 Running: testAttributeUpdated | |
| 9 ===== On attribute set ===== | |
| 10 <div id="node" name="value"></div> | |
| 11 | |
| 12 Running: testAttributeSameValueNotUpdated | |
| 13 ===== On attribute modified (should be 'newValue') ===== | |
| 14 <div id="node" name="newValue"></div> | |
| 15 | |
| 16 Running: testAttributeRemoved | |
| 17 === On attribute removed === | |
| 18 <div id="node"></div> | |
| 19 | |
| 20 Running: testSetAttributeValue | |
| 21 === Set attribute value === | |
| 22 <div id="node" foo="bar"></div> | |
| 23 | |
| 24 Running: testSetAttributeText | |
| 25 === Set attribute as text === | |
| 26 <div id="node" foo2="baz2" foo3="baz3"></div> | |
| 27 | |
| 28 Running: testRemoveAttributeAsText | |
| 29 === Remove attribute as text === | |
| 30 <div id="node" foo2="baz2"></div> | |
| 31 | |
| 32 Running: testSetMalformedAttributeText | |
| 33 Error: Could not parse value as attributes | |
| 34 === Set malformed attribute as text === | |
| 35 <div id="node" foo2="baz2"></div> | |
| 36 | |
| OLD | NEW |