Revert "Bug 1972411 - give gnome-shell and pipewire more time to start, and retry the task if we time out. r=jmaher" for causing linux perma failures
This reverts commit 2b905fe7199c9210434f7c7f8326b57025c91c55.
Revert "Bug 1972411 - make /builds/worker/fetches a volume in the test docker image. r=releng-reviewers,Eijebong"
This reverts commit 9d15aecaf6a08b98d3c47f2d0e644e35341b2520.
<!doctype html><head><metacharset=utf-8><title>Bug 1339332 - Test for missing keyframes in CSS Animation</title><scripttype="application/javascript"src="../testharness.js"></script><scripttype="application/javascript"src="../testharnessreport.js"></script><scripttype="application/javascript"src="../testcommon.js"></script></head><body><ahref="https://bugzilla.mozilla.org/show_bug.cgi?id=1339332"target="_blank">Mozilla Bug 1339332</a><divid="log"></div><style>@keyframesmissingFrom{to{text-align:right;}}@keyframesmissingBoth{50%{text-align:right;}}@keyframesmissingTo{from{text-align:right;}}</style><script>'use strict';constgTests=[{desc:'missing "from" keyframe',animationName:'missingFrom',expected:[{property:'text-align',values:[valueFormat(0,undefined,'replace','ease'),valueFormat(1,'right','replace')]}]},{desc:'missing "to" keyframe',animationName:'missingTo',expected:[{property:'text-align',values:[valueFormat(0,'right','replace','ease'),valueFormat(1,undefined,'replace')]}]},{desc:'missing "from" and "to" keyframes',animationName:'missingBoth',expected:[{property:'text-align',values:[valueFormat(0,undefined,'replace','ease'),valueFormat(.5,'right','replace','ease'),valueFormat(1,undefined,'replace')]}]},];gTests.forEach(function(subtest){test(function(t){constdiv=addDiv(t);div.style.animation=`${subtest.animationName} 1000s`;constanimation=div.getAnimations()[0];assert_properties_equal(animation.effect.getProperties(),subtest.expected);},subtest.desc);});</script></body>