Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 div { | |
| 4 position: fixed | |
| 5 } | |
| 6 </style> | |
| 7 crbug.com/477940: Don't set positioned objects for layout while laying out posit ioned objects. This test should not ASSERT. | |
| 8 <div> | |
| 9 <div> | |
| 10 <script> | |
| 11 if (window.testRunner) | |
| 12 testRunner.dumpAsText(); | |
| 13 thead = document.createElement("thead"); | |
| 14 document.body.appendChild(thead); | |
| 15 document.body.offsetTop; | |
| 16 document.body.removeChild(thead); | |
| 17 </script> | |
| OLD | NEW |