> > Simple test javascript file, demonstrating a bug that causes bugzilla to malfunction in Konqueror: > > > > function test() { > > var s = "Microsoft is evil!"; > > if(s.split(/[\s]+/).length < 2) > > alert("s doesn't contain spaces"); > > } > > split() now works with regexps. Strangely enough the + operator only > works for me when libpcre is being used. Above test is passed now. > Please come back to me if the real world case is different. Correction for the records: '+' works fine with and without libpcre. It's special symbols like \s that don't seem to work with the system library. Harri.