| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../resources/run-after-layout-and-paint.js"></script> | 2 <script src="../../../resources/run-after-layout-and-paint.js"></script> |
| 3 <script> | 3 <script> |
| 4 runAfterLayoutAndPaint(function() { | 4 runAfterLayoutAndPaint(function() { |
| 5 document.getElementById('span').firstChild.data = '234'; | 5 document.getElementById('span').firstChild.data = '234'; |
| 6 }, true); | 6 }, true); |
| 7 </script> | 7 </script> |
| 8 Tests invalidation when setting innerHTML of a composited inline element.<br> | 8 Tests invalidation when setting innerHTML of a composited inline element.<br> |
| 9 <span id="span" style="font-family: monospace; position: relative; backface-visi
bility: hidden">123</span> | 9 <span id="span" style="font-family: monospace; position: relative; backface-visi
bility: hidden">123</span> |
| OLD | NEW |