2 div#a { width:
100px; height:
100px; background-color: lightblue; }
3 div#b { display: none; }
4 div#b a { display: block; width:
100px; height:
100px; background-color: blue; }
5 div#a:hover + div { display:block; }
8 Test for
<i><a href=
"rdar://problem/7873647">rdar://problem/
7873647</a>
9 Crash when updating hover state
</i>.
12 Hover over the light blue square, then move down into the blue square. The browser should not crash.
19 if (window
.testRunner
) {
20 testRunner
.dumpAsText();
21 document
.body
.offsetTop
;
22 var y
= document
.getElementById("a").getBoundingClientRect().top
;
23 eventSender
.mouseMoveTo(50, y
+ 50);
24 eventSender
.mouseMoveTo(50, y
+ 150);