blob: a65394585c86e71de33c6899fe50af803dc56f39 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<style>
div { width: 60px; text-align: center;
position: relative; }
div#a { background: green; }
div#b { background: yellow; }
div#a:hover { background: red; }
div#b:hover { background: green; }
span#c:hover { color: red; }
</style>
</head>
<body>
<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=6821">Bugzilla bug 6821</a> Fix for 5983 will not always update hover correctly.</p>
<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
Move the mouse over the text “Hover here” until it disappears and “Wait” appears, then DO NOT MOVE the mouse
until the end of the test.
</p>
<p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b>
After a second, you should see “Only green now” over a green background.
No other colors should be visible.
</p>
<p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b>
“Only green now” will appear over a yellow background with a red
rect at the top. If you move the mouse over the background, the colors will
change to green eventually.
</p>
<hr>
<script type="text/javascript">
function hideC()
{
c.style.display = 'none';
}
function hoveredC()
{
window.setTimeout(hideC, 1000);
}
</script>
<div id="a">
<div style="height: 20px;"></div>
<span id="c" onmouseover="hoveredC()">Hover here<br><span style="background: black;"> Wait </span></span>
</div>
<div id="b">
Only green now
</div>
</body>
</html>
|