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.
<?xml version="1.0"?><htmlxmlns="http://www.w3.org/1999/xhtml"><!--https://bugzilla.mozilla.org/show_bug.cgi?id=419527--><head><title>Test for Bug 419527</title><scriptsrc="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script><linkrel="stylesheet"type="text/css"href="chrome://mochikit/content/tests/SimpleTest/test.css"/></head><body><templateid="template"><span>Foo</span></template><atarget="_blank"href="https://bugzilla.mozilla.org/show_bug.cgi?id=419527">Mozilla Bug 419527</a><pid="display"></p><divid="content"style="display: none"></div><preid="test"><scriptclass="testbody"type="text/javascript"><![CDATA[/** Test for Bug 419527 **/customElements.define("custom-element",classextendsHTMLElement{constructor(){super();consttemplate=document.getElementById("template");constshadowRoot=this.attachShadow({mode:"open"}).appendChild(template.content.cloneNode(true));}connectedCallback(){varwin=window;varspan=this.shadowRoot.children[0];win.ok(span.textContent=="Foo","Right span.");win.ok(span.localName=="span","Wrong anon node!");varrange=document.createRange();range.selectNode(span.firstChild);win.ok(range.startContainer==span,"Wrong start container!");win.ok(range.endContainer==span,"Wrong end container!");varnewSubTree=win.newSubTree;newSubTree.appendChild(this);range.setStart(newSubTree.firstChild,0);win.ok(range.startContainer==newSubTree.firstChild,"Range should have been collapsed to newSubTree.firstChild!");win.ok(range.endContainer==newSubTree.firstChild,"Range should have been collapsed to newSubTree.firstChild!");SimpleTest.finish();}});vard;functionrunRangeTest(){window.newSubTree=document.createElementNS("http://www.w3.org/1999/xhtml","div");newSubTree.appendChild(document.createElementNS("http://www.w3.org/1999/xhtml","div"));d=document.createElementNS("http://www.w3.org/1999/xhtml","custom-element");document.body.appendChild(d);}SimpleTest.waitForExplicitFinish();setTimeout(runRangeTest,0);]]></script></pre></body></html>