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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-3-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-3-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-3-expected.txt b/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-3-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8d15d2c5f8aae7ba155b87596f1ce3971a0b13da
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-3-expected.txt
@@ -0,0 +1,33 @@
+Tests that user can mutate DOM by means of elements panel.
+
+Element
+Span contents
+
+Running: testSetUp
+
+Running: testEditCommentAsHTML
+==== before ====
+- <div id="testEditCommentAsHTML">
+ <!-- Comment -->
+ </div>
+<!-- Comment -->
+==== after ====
+- <div id="testEditCommentAsHTML">
+ <div foo="bar-comment">Element</div>
+ </div>
+
+Running: testEditAsHTML
+==== before ====
+- <div id="testEditAsHTML">
+ - <div id="node-to-edit-as-html">
+ <span id="span">Text</span>
+ </div>
+ </div>
+<div id="node-to-edit-as-html"><span id="span">Text</span></div>
+==== after ====
+- <div id="testEditAsHTML">
+ - <span foo="bar">
+ <span id="inner-span">Span contents</span>
+ </span>
+ </div>
+

Powered by Google App Engine
This is Rietveld 408576698