Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <script src="../../resources/js-test.js"></script> | |
| 2 | |
| 3 <style> | |
| 4 input { | |
| 5 line-height: 10px; | |
| 6 display: none; | |
| 7 } | |
| 8 a:visited input { | |
| 9 background-color: yellow; | |
| 10 } | |
| 11 </style> | |
| 12 | |
| 13 <a id="a" href=""><input id="input" type="button"></input></a> | |
| 14 | |
| 15 <script> | |
| 16 if (window.testRunner) | |
| 17 testRunner.keepWebHistory(); | |
| 18 | |
| 19 a.style.color = "orange"; | |
| 20 a.style.color = ""; | |
| 21 shouldBeEqualToString("getComputedStyle(input).lineHeight", "normal"); | |
| 22 </script> | |
| OLD | NEW |