Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 ul { text-align: center } | |
| 4 ul.left { text-align: left } | |
| 5 </style> | |
| 6 <ul id="uList"> | |
| 7 <li>This text should not be centered</li> | |
| 8 </ul> | |
| 9 <script> | |
| 10 uList.offsetTop; | |
| 11 uList.className = "left"; | |
| 12 </script> | |
| OLD | NEW |