author | Daisuke Akatsuka <dakatsuka@mozilla.com> |
Tue, 03 Apr 2018 12:26:57 +0900 | |
changeset 411520 | 59615d0d8365ac00301617d8c15246e2781c77c1 |
parent 411519 | d51d434ff1a9a4e4e857caad671fba9c98d485c0 |
child 411521 | dbfef31316376758111683c6763ee85f6dbaac1b |
push id | 101686 |
push user | aciure@mozilla.com |
push date | Tue, 03 Apr 2018 21:59:31 +0000 |
treeherder | mozilla-inbound@8d846598d35d [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | pbro |
bugs | 1448732 |
milestone | 61.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/devtools/client/inspector/animation/test/browser_animation_animation-detail_visibility.js +++ b/devtools/client/inspector/animation/test/browser_animation_animation-detail_visibility.js @@ -1,17 +1,15 @@ /* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ "use strict"; // Test that whether animations detail could be displayed if there is selected animation. -requestLongerTimeout(2); - add_task(async function() { await addTab(URL_ROOT + "doc_custom_playback_rate.html"); const { animationInspector, inspector, panel } = await openAnimationInspector(); info("Checking animation detail visibility if animation was unselected"); const detailEl = panel.querySelector("#animation-container .controlled"); ok(detailEl, "The detail pane should be in the DOM"); const win = panel.ownerGlobal;
--- a/devtools/client/inspector/animation/test/browser_animation_empty_on_invalid_nodes.js +++ b/devtools/client/inspector/animation/test/browser_animation_empty_on_invalid_nodes.js @@ -1,14 +1,12 @@ /* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ "use strict"; -requestLongerTimeout(2); - // Test that the panel shows no animation data for invalid or not animated nodes add_task(async function() { await addTab(URL_ROOT + "doc_simple_animation.html"); await removeAnimatedElementsExcept([".animated", ".long", ".still"]); const { inspector, panel } = await openAnimationInspector(); info("Checking animation list and error message existence for a still node");
--- a/devtools/client/inspector/animation/test/browser_animation_keyframes-graph_computed-value-path.js +++ b/devtools/client/inspector/animation/test/browser_animation_keyframes-graph_computed-value-path.js @@ -4,18 +4,16 @@ "use strict"; // Test for following ComputedValuePath component: // * element existence // * path segments // * fill color by animation type // * stop color if the animation type is color -requestLongerTimeout(2); - const TEST_DATA = [ { targetClass: "multi-types", properties: [ { name: "background-color", computedValuePathClass: "color-path", expectedPathSegments: [
--- a/devtools/client/inspector/animation/test/browser_animation_keyframes-progress-bar.js +++ b/devtools/client/inspector/animation/test/browser_animation_keyframes-progress-bar.js @@ -4,17 +4,17 @@ http://creativecommons.org/publicdomain/ "use strict"; // Test for following KeyframesProgressBar: // * element existence // * progress bar position in multi effect timings // * progress bar position after changing playback rate // * progress bar position when select another animation -requestLongerTimeout(5); +requestLongerTimeout(2); const TEST_DATA = [ { targetClass: "cssanimation-linear", scrubberPositions: [0, 0.25, 0.5, 0.75, 1], expectedPositions: [0, 0.25, 0.5, 0.75, 0], }, {