blob: 78b0f0dce7c500675503c51313cf35d61682baca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<script src="../resources/common.js"></script>
<script>
function startTest() {
var label = document.getElementById("label");
var checkbox = document.getElementById("checkbox");
// Move mouse to checkbox.
hoverOverElement(checkbox);
// Move mouse to text after checkbox.
hoverOverElement(label);
}
</script>
<style>
input[type=checkbox]:hover {
box-shadow: inset 5px 5px 5px rgba(0,255,0,1.0);
}
</style>
</head>
<body onload="startTest()">
<label id="label"><input id="checkbox" type="checkbox" /> Test</label>
</body>
</html>
|