Long Text Lines in Webkit

I got a report that a long link was overflowing in Chrome 16 and Safari 5.1:

screenshot

For some reason Webkit doesn't wrap the text sensibly by default. IE and Firefox do fine. Luckily there is a very quick CSS solution:

body {
    word-wrap: break-word;
}

Top Tip

Just what I need. Thanks +1