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><html><head><metacharset=utf-8><title>Test max-age attribute parsing</title><metaname=helphref="https://tools.ietf.org/html/rfc6265#section-5.3.2"><metaname="timeout"content="long"><scriptsrc="/resources/testharness.js"></script><scriptsrc="/resources/testharnessreport.js"></script><scriptsrc="/resources/testdriver.js"></script><scriptsrc="/resources/testdriver-vendor.js"></script><scriptsrc="/cookies/resources/cookie-test.js"></script></head><body><divid=log></div><script>// TODO: there is more to test here, these tests capture the old// ported http-state tests. Feel free to delete this comment when more// are added.constmaxAgeTests=[{cookie:"test=1; Max-Age=50,399",expected:"test=1",name:"Ignore max-age attribute with invalid non-zero-digit (containing a comma)",},{cookie:"test=2; max-age=10000",expected:"test=2",name:"Set cookie with age",},{cookie:"test=3; max-age=0",expected:"",name:"Set no cookie with max-age=0",},{cookie:"test=4; max-age=-1",expected:"",name:"Set no cookie with max-age=-1",},{cookie:"test=5; max-age=-20",expected:"",name:"Set no cookie with max-age=-20",},{cookie:["testA=6; max-age=60","testB=6; max-age=60"],expected:"testA=6; testB=6",name:"Set multiple cookies with max-age attribute",},{cookie:["testA=7; max-age=60","testB=7; max-age=60","testA=differentvalue; max-age=0"],expected:"testB=7",name:"Expire later cookie with same name and max-age=0",},{cookie:["testA=8; max-age=60","testB=8; max-age=60","testA=differentvalue; max-age=0","testC=8; max-age=0"],expected:"testB=8",name:"Expire later cookie with same name and max-age=0, and don't set cookie with max-age=0",},{cookie:['test="9! = foo;bar\";" parser; max-age=6',"test9; max-age=2.63,"],expected:'test="9! = foo; test9',name:"Set multiple cookies with valid max-age values",},{cookie:["test=10; max-age=0","test10; max-age=0"],expected:"",name:"Don't set multiple cookies with max-age=0",},];for(consttestofmaxAgeTests){httpCookieTest(test.cookie,test.expected,test.name);}</script></body></html>