| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |