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

Side by Side Diff: LayoutTests/http/tests/inspector/elements-test.js

Issue 1155773002: Devtools Animations: Add cubic bezier easing editor for animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Missing files Created 5 years, 7 months 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 | Annotate | Revision Log
OLDNEW
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698