Since LayerTreeDataGrid sorts its nodes in a custom way with a .setChildren() method, where we don't touch the DOM structure, but rather change the transforms on the nodes, then the styling applied based on DOM order doesn't work. We'll need to do this manually.
<rdar://problem/15111014>
<rdar://problem/14101458>
Created attachment 212994 [details] Patch
Comment on attachment 212994 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=212994&action=review > Source/WebInspectorUI/UserInterface/LayerTreeDataGrid.js:101 > + if (i % 2 === 1) { I think we can leave off the “=== 1” here, since it’s just zero vs. non-zero.
Created attachment 213025 [details] Patch for landing
Comment on attachment 213025 [details] Patch for landing Clearing flags on attachment: 213025 Committed r156675: <http://trac.webkit.org/changeset/156675>
All reviewed patches have been landed. Closing bug.