| OLD | NEW |
| 1 var initialize_ElementTest = function() { | 1 var initialize_ElementTest = function() { |
| 2 | 2 |
| 3 InspectorTest.preloadPanel("elements"); | 3 InspectorTest.preloadPanel("elements"); |
| 4 | 4 |
| 5 InspectorTest.inlineStyleSection = function() | 5 InspectorTest.inlineStyleSection = function() |
| 6 { | 6 { |
| 7 return WebInspector.panels.elements.sidebarPanes.styles._sectionBlocks[0].se
ctions[0]; | 7 return WebInspector.panels.elements.sidebarPanes.styles._sectionBlocks[0].se
ctions[0]; |
| 8 } | 8 } |
| 9 | 9 |
| 10 InspectorTest.computedStyleSidebarPane = function() | 10 InspectorTest.computedStyleSidebarPane = function() |
| (...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 979 InspectorTest.waitForAnimationAdded = function(callback) | 979 InspectorTest.waitForAnimationAdded = function(callback) |
| 980 { | 980 { |
| 981 InspectorTest.addSniffer(WebInspector.AnimationTimeline.prototype, "_addAnim
ation", callback); | 981 InspectorTest.addSniffer(WebInspector.AnimationTimeline.prototype, "_addAnim
ation", callback); |
| 982 } | 982 } |
| 983 | 983 |
| 984 InspectorTest.dumpAnimationTimeline = function(timeline) | 984 InspectorTest.dumpAnimationTimeline = function(timeline) |
| 985 { | 985 { |
| 986 for (var nodeUI of timeline._nodesMap.values()) { | 986 for (var nodeUI of timeline._nodesMap.values()) { |
| 987 for (nodeRow of nodeUI._rows) { | 987 for (nodeRow of nodeUI._rows) { |
| 988 for (var ui of nodeRow.animations) { | 988 for (var ui of nodeRow.animations) { |
| 989 InspectorTest.addResult(ui.animation().type()); |
| 989 InspectorTest.addResult(ui._nameElement.outerHTML); | 990 InspectorTest.addResult(ui._nameElement.outerHTML); |
| 990 InspectorTest.addResult(ui._svg.outerHTML); | 991 InspectorTest.addResult(ui._svg.outerHTML); |
| 991 } | 992 } |
| 992 } | 993 } |
| 993 } | 994 } |
| 994 } | 995 } |
| 995 | 996 |
| 996 }; | 997 }; |
| OLD | NEW |