All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fluentlenium.core.css.injector.js Maven / Gradle / Ivy

//var cssText = "";
var css = document.createElement("style");
css.type = "text/css";
if ("textContent" in css) {
    css.textContent = cssText;
} else {
    css.innerText = cssText;
}
document.head.insertBefore(css, document.head.childNodes[0]);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy