I'm using PHP with Xdebug. Yesterday everything is OK but today I have one problem: My Chrome Developer tools cannot show the HTML which formatted by Xdebug, all lines are combined to one line.
The RAW HTML in Network->Response
tab is something like this:
<pre class='xdebug-var-dump' dir='ltr'>
<small>C:\wamp\Debug.php:68:</small>
<b>array</b> <i>(size=18)</i>
'name' <font color='#888a85'>=></font> <small>string</small> <font color='#cc0000'>'abc'</font> <i>(length=56)</i>
'img' <font color='#888a85'>=></font> <small>string</small> <font color='#cc0000'>'http://product.net/1000169499.jpg'</font> <i>(length=69)</i>
</pre>
I have tested by http://htmledit.squarefree.com/ and it shows normally but in Network->Preview
displays:
Respone Headers is Content-Type:text/html; charset=UTF-8
I'm using Chrome Version 61.0.3163.79 (Official Build) (64-bit).
How to resolve this problem?
Bug was fixed. Tested on Version 70.0.3538.77 (Official Build) (64-bit)