* How many pixels should this object be placed from the top (relative to the parent origin).
* @param left
* How many pixels should this object be placed from the left (relative to the parent origin).
*/
public AbstractHtmlObject(String tagName, int width, int height, int top, int left) {
Element element = DOM.createElement(tagName);
DOM.setStyleAttribute(element, "position", "absolute");
DOM.setStyleAttribute(element, "width", width + "px");
DOM.setStyleAttribute(element, "height", height + "px");
DOM.setStyleAttribute(element, "top", top + "px");
DOM.setStyleAttribute(element, "left", left + "px");