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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-2.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 testSetAttribute(next) 20 function testSetAttribute(next)
21 { 21 {
22 InspectorTest.domActionTestForNodeId("testSetAttribute", "node-to-se t-attribute", testBody, next); 22 InspectorTest.domActionTestForNodeId("testSetAttribute", "node-to-se t-attribute", testBody, next);
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 <div id="testAddAttribute"> 83 <div id="testAddAttribute">
84 <div id="node-to-add-attribute"></div> 84 <div id="node-to-add-attribute"></div>
85 </div> 85 </div>
86 86
87 <div id="testAddAttributeUnquotedValue"> 87 <div id="testAddAttributeUnquotedValue">
88 <div id="node-to-add-attribute-unquoted-value"></div> 88 <div id="node-to-add-attribute-unquoted-value"></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