Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-2-expected.txt

Issue 1875373002: DevTools: split edit-dom-actions.html into three tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: split into two tests Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>
+

Powered by Google App Engine
This is Rietveld 408576698