Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 html { | |
| 4 display: none; | |
| 5 background-image: linear-gradient(black, black); | |
| 6 } | |
| 7 </style> | |
| 8 <script src='../../resources/run-after-layout-and-paint.js'></script> | |
| 9 <script> | |
| 10 runAfterLayoutAndPaint(function(){ | |
| 11 document.write("PASS"); | |
| 12 if (window.testRunner) | |
| 13 testRunner.dumpAsText(); | |
| 14 }, true); | |
| 15 </script> | |
| 16 This test should not crash due to referencing a null root element renderer when painting root background. | |
| OLD | NEW |