Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../resources/common.js"></script> | |
| 5 <style> | |
| 6 input::after { | |
|
tkent
2015/05/14 05:24:00
Don't use :after for an input element.
| |
| 7 content: 'Hovering'; | |
| 8 top: 2em; | |
| 9 position: relative; | |
| 10 } | |
| 11 </style> | |
| 12 </head> | |
| 13 <body> | |
| 14 <label id="label"><input id="checkbox" type="checkbox" /> Test</label> | |
| 15 <script> | |
| 16 hoverOverElement(document.getElementById("checkbox")); | |
| 17 </script> | |
| 18 </body> | |
| 19 </html> | |
| OLD | NEW |