author | Ehsan Akhgari <ehsan@mozilla.com> |
Wed, 30 Dec 2015 20:14:24 -0500 | |
changeset 278086 | 51d5fba7bada46a0c67f21e53ecbff45953c29a3 |
parent 278085 | d2c070e1e356a16fa2428dc0437077df8ed31e5f |
child 278087 | 585fbfe00e0fee774f1b844cc51c4c9960f01af2 |
push id | 29841 |
push user | ryanvm@gmail.com |
push date | Sat, 02 Jan 2016 00:29:52 +0000 |
treeherder | mozilla-central@f7fbc524f9f3 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1235903 |
milestone | 46.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
|
devtools/client/animationinspector/test/browser_animation_refresh_on_added_animation.js | file | annotate | diff | comparison | revisions |
--- a/devtools/client/animationinspector/test/browser_animation_refresh_on_added_animation.js +++ b/devtools/client/animationinspector/test/browser_animation_refresh_on_added_animation.js @@ -1,14 +1,16 @@ /* vim: set ts=2 et sw=2 tw=80: */ /* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ "use strict"; +requestLongerTimeout(2); + // Test that the panel content refreshes when new animations are added. add_task(function*() { yield addTab(TEST_URL_ROOT + "doc_simple_animation.html"); let {inspector, panel} = yield openAnimationInspector(); info("Select a non animated node"); yield selectNode(".still", inspector); @@ -37,9 +39,9 @@ add_task(function*() { function* changeElementAndWait(options, panel, inspector) { let onPanelUpdated = panel.once(panel.UI_UPDATED_EVENT); let onInspectorUpdated = inspector.once("inspector-updated"); yield executeInContent("devtools:test:setAttribute", options); yield promise.all([ onInspectorUpdated, onPanelUpdated, waitForAllAnimationTargets(panel)]); -} \ No newline at end of file +}