Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE HTML> | |
| 2 <script src="resources/text-based-repaint.js"></script> | |
| 3 <script> | |
| 4 function repaintTest() | |
| 5 { | |
| 6 document.getElementById('target').style.boxSizing = 'content-box'; | |
| 7 } | |
| 8 window.onload = runRepaintTest; | |
| 9 </script> | |
| 10 <style> | |
| 11 body { | |
| 12 margin: 0; | |
| 13 } | |
| 14 #target { | |
| 15 border: solid blue 20px; | |
| 16 width: 50%; | |
| 17 height: 100px; | |
| 18 box-sizing: border-box; | |
| 19 position: absolute; | |
| 20 } | |
| 21 </style> | |
| 22 <div id="target"></div> | |
| OLD | NEW |