I have to insert .png image in button background but it is not inserted in firefox extension in overlay.js/javascript file.
var htmlns = "http://www.w3.org/1999/xhtml";
var button = document.createElementNS(htmlns,"button");
button.setAttribute("style", "background-image:in.png");
button.id = "btn1";
documentElement.body.insertBefore(button, documentElement.body.firstChild);
gBrowser.contentDocument.getElementById("btn1").style.width = "45%";
gBrowser.contentDocument.getElementById("btn1").style.height = "78%";