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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 Tests that user can mutate DOM by means of elements panel.
2
3
4 Running: testSetUp
5
6 Running: testSetAttribute
7 ==== before ====
8 - <div id="testSetAttribute">
9 <div foo="attribute value" id="node-to-set-attribute"></div>
10 </div>
11 ==== after ====
12 - <div id="testSetAttribute">
13 <div id="node-to-set-attribute" bar="edited attribute"></div>
14 </div>
15
16 Running: testSetScriptableAttribute
17 ==== before ====
18 - <div id="testSetScriptableAttribute">
19 <div onclick="alert(1)" id="node-to-set-scriptable-attribute"></div>
20 </div>
21 ==== after ====
22 - <div id="testSetScriptableAttribute">
23 <div onclick="alert(2)" id="node-to-set-scriptable-attribute"></div>
24 </div>
25
26 Running: testRemoveAttribute
27 ==== before ====
28 - <div id="testRemoveAttribute">
29 <div foo="attribute value" id="node-to-remove-attribute"></div>
30 </div>
31 ==== after ====
32 - <div id="testRemoveAttribute">
33 <div id="node-to-remove-attribute"></div>
34 </div>
35
36 Running: testAddAttribute
37 ==== before ====
38 - <div id="testAddAttribute">
39 <div id="node-to-add-attribute"></div>
40 </div>
41 ==== after ====
42 - <div id="testAddAttribute">
43 <div id="node-to-add-attribute" newattr="new-value"></div>
44 </div>
45
46 Running: testAddAttributeUnquotedValue
47 ==== before ====
48 - <div id="testAddAttributeUnquotedValue">
49 <div id="node-to-add-attribute-unquoted-value"></div>
50 </div>
51 ==== after ====
52 - <div id="testAddAttributeUnquotedValue">
53 <div id="node-to-add-attribute-unquoted-value" newattr="unquotedValue"></d iv>
54 </div>
55
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698