| Index: third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-2-expected.txt
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-2-expected.txt b/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-2-expected.txt
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c5063626e35994436e1c71c6ba0d4aa43fe34750
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-2-expected.txt
|
| @@ -0,0 +1,55 @@
|
| +Tests that user can mutate DOM by means of elements panel.
|
| +
|
| +
|
| +Running: testSetUp
|
| +
|
| +Running: testSetAttribute
|
| +==== before ====
|
| +- <div id="testSetAttribute">
|
| + <div foo="attribute value" id="node-to-set-attribute"></div>
|
| + </div>
|
| +==== after ====
|
| +- <div id="testSetAttribute">
|
| + <div id="node-to-set-attribute" bar="edited attribute"></div>
|
| + </div>
|
| +
|
| +Running: testSetScriptableAttribute
|
| +==== before ====
|
| +- <div id="testSetScriptableAttribute">
|
| + <div onclick="alert(1)" id="node-to-set-scriptable-attribute"></div>
|
| + </div>
|
| +==== after ====
|
| +- <div id="testSetScriptableAttribute">
|
| + <div onclick="alert(2)" id="node-to-set-scriptable-attribute"></div>
|
| + </div>
|
| +
|
| +Running: testRemoveAttribute
|
| +==== before ====
|
| +- <div id="testRemoveAttribute">
|
| + <div foo="attribute value" id="node-to-remove-attribute"></div>
|
| + </div>
|
| +==== after ====
|
| +- <div id="testRemoveAttribute">
|
| + <div id="node-to-remove-attribute"></div>
|
| + </div>
|
| +
|
| +Running: testAddAttribute
|
| +==== before ====
|
| +- <div id="testAddAttribute">
|
| + <div id="node-to-add-attribute"></div>
|
| + </div>
|
| +==== after ====
|
| +- <div id="testAddAttribute">
|
| + <div id="node-to-add-attribute" newattr="new-value"></div>
|
| + </div>
|
| +
|
| +Running: testAddAttributeUnquotedValue
|
| +==== before ====
|
| +- <div id="testAddAttributeUnquotedValue">
|
| + <div id="node-to-add-attribute-unquoted-value"></div>
|
| + </div>
|
| +==== after ====
|
| +- <div id="testAddAttributeUnquotedValue">
|
| + <div id="node-to-add-attribute-unquoted-value" newattr="unquotedValue"></div>
|
| + </div>
|
| +
|
|
|