Hi Jacek,
 
>static HRESULT WINAPI HTMLStyle_put_border(IHTMLStyle *iface, BSTR v)
> {
>     HTMLStyle *This = HTMLSTYLE_THIS(iface);
>-    FIXME("(%p)->(%s)\n", This, debugstr_w(v));
>-    return E_NOTIMPL;
>+
>+    TRACE("(%p)->(%s)\n", This, debugstr_w(v));
>+
>+    return set_style_attr(This, STYLEID_BORDER, v, 0);
> }
 
My sample code
style->put_border(L"groove 5");
 
produced
<BODY style="BORDER-RIGHT: 5px groove; BORDER-TOP: 5px groove;
           BORDER-LEFT: 5px groove; BORDER-BOTTOM: 5px groove" /BODY>
 
Will gecko expand "border" to the above?
 
 

Best Regards

 Alistair Leslie-Hughes