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-1.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../../http/tests/inspector/elements-test.js"></script> 4 <script src="../../../http/tests/inspector/elements-test.js"></script>
5 <script src="edit-dom-test.js"></script> 5 <script src="edit-dom-test.js"></script>
6 <script> 6 <script>
7 7
8 function test() 8 function test()
9 { 9 {
10 // Save time on style updates. 10 // Save time on style updates.
11 WebInspector.StylesSidebarPane.prototype.update = function() {}; 11 Elements.StylesSidebarPane.prototype.update = function() {};
12 WebInspector.MetricsSidebarPane.prototype.update = function() {}; 12 Elements.MetricsSidebarPane.prototype.update = function() {};
13 13
14 InspectorTest.runTestSuite([ 14 InspectorTest.runTestSuite([
15 function testSetUp(next) 15 function testSetUp(next)
16 { 16 {
17 InspectorTest.expandElementsTree(next); 17 InspectorTest.expandElementsTree(next);
18 }, 18 },
19 19
20 function testRemove(next) 20 function testRemove(next)
21 { 21 {
22 InspectorTest.domActionTestForNodeId("testRemove", "node-to-remove", testBody, next); 22 InspectorTest.domActionTestForNodeId("testRemove", "node-to-remove", testBody, next);
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 </div> 83 </div>
84 84
85 <div id="testSetNodeValue"> 85 <div id="testSetNodeValue">
86 <div id="node-to-set-value"> 86 <div id="node-to-set-value">
87 Text 87 Text
88 </div> 88 </div>
89 </div> 89 </div>
90 </div> 90 </div>
91 </body> 91 </body>
92 </html> 92 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698