Using the CSS "white-space:pre-wrap" will slow down the Chrome browser to a complete crawl when you have a large amount of text.The same CSS will execute 30 times faster on IE and FireFox.
Sample HTML:
<pre style="white-space:pre-wrap" class="no-padding">
... a lot of text goes here....
</pre>
When I use "white-space:pre" the browser loads very quickly, but the text doesn't wrap (even is I use the word-break: break-all and word-wrap: break-word styles options). Instead I would get a very long horizontal scroll-bar.
I found a related post on another website and they actually have reproduced the problem with some sample code:
This problem started in the beginning of March 2016 and appears to have coincided with a Chrome upgrade that occurred at that time.
For now, we are stuck having to use different browsers to get around this problem.