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