Chromium Code Reviews| Index: LayoutTests/fast/forms/label/hover-on-moving-mouse-checkbox-to-parent-label-expected.html |
| diff --git a/LayoutTests/fast/forms/label/hover-on-moving-mouse-checkbox-to-parent-label-expected.html b/LayoutTests/fast/forms/label/hover-on-moving-mouse-checkbox-to-parent-label-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f58765aa4c5f8dd5fc6b58775d332cc415997d20 |
| --- /dev/null |
| +++ b/LayoutTests/fast/forms/label/hover-on-moving-mouse-checkbox-to-parent-label-expected.html |
| @@ -0,0 +1,19 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +<script src="../resources/common.js"></script> |
| +<style> |
| + input::after { |
|
tkent
2015/05/14 05:24:00
Don't use :after for an input element.
|
| + content: 'Hovering'; |
| + top: 2em; |
| + position: relative; |
| + } |
| +</style> |
| +</head> |
| +<body> |
| +<label id="label"><input id="checkbox" type="checkbox" /> Test</label> |
| +<script> |
| + hoverOverElement(document.getElementById("checkbox")); |
| +</script> |
| +</body> |
| +</html> |