| OLD | NEW |
| (Empty) | |
| 1 <!doctype html> |
| 2 <script src="../../resources/run-after-layout-and-paint.js"></script> |
| 3 <!-- Test passes if it does not crash on an ASAN build. --> |
| 4 <style> |
| 5 .c7 { |
| 6 background: white; |
| 7 display: table-column-group; |
| 8 } |
| 9 .c13 { |
| 10 display: table-cell; |
| 11 border-style: ridge; |
| 12 will-change: transform; |
| 13 } |
| 14 </style> |
| 15 <script> |
| 16 var label = document.createElement('label'); |
| 17 label.setAttribute('class', 'c13'); |
| 18 document.documentElement.appendChild(label); |
| 19 var colgroup = document.createElement('colgroup'); |
| 20 colgroup.setAttribute('class', 'c13'); |
| 21 document.documentElement.appendChild(colgroup); |
| 22 var aside = document.createElement('aside'); |
| 23 aside.setAttribute('class', 'c13'); |
| 24 document.documentElement.appendChild(aside); |
| 25 if (window.testRunner) |
| 26 testRunner.waitUntilDone(); |
| 27 runAfterLayoutAndPaint(function() { |
| 28 colgroup.setAttribute('class', 'c11'); |
| 29 label.setAttribute('class', 'c7'); |
| 30 }, true); |
| 31 </script> |
| OLD | NEW |