Re: [PATCH 4/4] mshtml: Added IHTMLElement:removeAttribute tests.

2010-03-26 Thread Jacek Caban
Hi Paul, On 03/26/10 10:40, Paul Vriens wrote: > Hi Jacek, > > On 03/24/2010 08:01 PM, Jacek Caban wrote: >> +function test_removeAttribute(e) { >> +ok(e.removeAttribute('nonexisting') === false, >> "removeAttribute('nonexisting') didn't return false"); >> + >> +e.title = "title"; >> +

Re: [PATCH 4/4] mshtml: Added IHTMLElement:removeAttribute tests.

2010-03-26 Thread Paul Vriens
Hi Jacek, On 03/24/2010 08:01 PM, Jacek Caban wrote: +function test_removeAttribute(e) { +ok(e.removeAttribute('nonexisting') === false, "removeAttribute('nonexisting') didn't return false"); + +e.title = "title"; +ok(e.removeAttribute('title') === true, "removeAttribute('title') di