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