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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-4.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 testEditInvisibleCharsAsHTML(next) 20 function testEditInvisibleCharsAsHTML(next)
21 { 21 {
22 InspectorTest.domActionTestForNodeId("testEditInvisibleCharsAsHTML", "node-with-invisible-chars", testBody, next); 22 InspectorTest.domActionTestForNodeId("testEditInvisibleCharsAsHTML", "node-with-invisible-chars", testBody, next);
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 </script> 102 </script>
103 </div> 103 </div>
104 104
105 <div id="testEditSVG"> 105 <div id="testEditSVG">
106 <svg id="node-to-edit-svg-attribute" xmlns:xlink="test" width="100"> 106 <svg id="node-to-edit-svg-attribute" xmlns:xlink="test" width="100">
107 </svg> 107 </svg>
108 </div> 108 </div>
109 </div> 109 </div>
110 </body> 110 </body>
111 </html> 111 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698