Readability of element attributes in DOM inspector

Hi there,

I would love to see some improvements in the readability of the element attributes in the DOM Inspector.

Perhaps it would help to spread to line separate them on select.

Take this <input> for example:

<input type="text" placeholder="Enter your name" id="name" class="form-control" value="Foo Bar" autofocus="true" />

My suggestion is that this should automatically transform, when selecting the element, to a multi line version (preferably alphabetically ordered):

<input 
    autofocus="true"
    class="form-control"
    id="name"
    placeholder="Enter your name"
    type="text"
    value="Foo Bar"
/>

What do you guys think?