Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 | |
| 3 <style> | |
| 4 .box { | |
| 5 width: 400px; | |
| 6 height: 200px; | |
| 7 box-sizing: border-box; | |
| 8 | |
| 9 border-bottom-right-radius: 200px; | |
| 10 border: 60px solid green; | |
| 11 background-color: yellow; | |
| 12 </style> | |
| 13 | |
| 14 <div class="box"></div> | |
| 15 | |
| 16 PASS: did not crash. | |
| 17 | |
| 18 <script> | |
| 19 if (window.testRunner) | |
| 20 testRunner.dumpAsText(); | |
| 21 </script> | |
| OLD | NEW |