Comment by pekka.klarck:

Score: Negative

General Comment:
Using `parts.splice(1,1)` doesn't really work with any browser because it breaks the algorithm. For example link like 'Title:http://example.com' is turned into {title: 'Title', url: 'http'} when the correct format obviously is {title: 'Title', url: 'http://example.com'}.

I already changed this back when I noticed --tagstatlink didn't work. I though the original algorithm was broken but now I see the root cause. Probably the best way to really fix this is creating a utility function that can splice lists with any browser, test that with Jasmine, and use here and elsewhere.

For more information:
http://code.google.com/p/robotframework/source/detail?r=945ee9ca414e2f1793aa1353bb7ff7bd40328e4a

Reply via email to