12 lines
493 B
JavaScript
12 lines
493 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Used for desktop coverage tests because triggering methods on
|
|
// DOMContentLoaded proved to lead to race conditions.
|
|
|
|
sinon.stub(document, "addEventListener");
|
|
console.log("[head.js] addEventListener stubbed to prevent race conditions");
|
|
|
|
document.body.appendChild(document.createElement("div")).id = "fixtures";
|
|
console.log("[head.js] div#fixtures added to attach DOM elements");
|