| OLD | NEW |
| 1 was hovered | 1 was hovered |
| 2 was hovered | 2 was hovered |
| 3 currently hovered | 3 currently hovered |
| 4 hover over me | 4 hover over me |
| 5 hover over me | 5 hover over me |
| 6 hover over me | 6 hover over me |
| 7 hover over me | 7 hover over me |
| 8 hover over me | 8 hover over me |
| 9 hover over me | 9 hover over me |
| 10 hover over me | 10 hover over me |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 Test for http://crbug.com/153784. New hover effects should not be invoked during
scroll if the mouse cursor is not visible. | 32 Test for http://crbug.com/153784. New hover effects should not be invoked during
scroll if the mouse cursor is not visible. |
| 33 | 33 |
| 34 Mouse is visible, moving it over the first div. | 34 Mouse is visible, moving it over the first div. |
| 35 PASS array[0].innerHTML is "currently hovered" | 35 PASS array[0].innerHTML is "currently hovered" |
| 36 PASS array[1].innerHTML is "hover over me" | 36 PASS array[1].innerHTML is "hover over me" |
| 37 Mouse is visible, moving it over the second div. | 37 Mouse is visible, moving it over the second div. |
| 38 PASS array[0].innerHTML is "was hovered" | 38 PASS array[0].innerHTML is "was hovered" |
| 39 PASS array[1].innerHTML is "currently hovered" | 39 PASS array[1].innerHTML is "currently hovered" |
| 40 PASS array[2].innerHTML is "hover over me" | 40 PASS array[2].innerHTML is "hover over me" |
| 41 Mouse is visible, scrolling page so the mouse ends up on the third div. | 41 Mouse is visible, scrolling page so the mouse ends up on the third div. |
| 42 PASS document.body.scrollTop is 0 | 42 PASS document.documentElement.scrollTop is 0 |
| 43 PASS array[0].innerHTML is "was hovered" | 43 PASS array[0].innerHTML is "was hovered" |
| 44 PASS array[1].innerHTML is "was hovered" | 44 PASS array[1].innerHTML is "was hovered" |
| 45 PASS array[2].innerHTML is "currently hovered" | 45 PASS array[2].innerHTML is "currently hovered" |
| 46 PASS array[3].innerHTML is "hover over me" | 46 PASS array[3].innerHTML is "hover over me" |
| 47 Mouse is not visible, scrolling page so the mouse ends up on the fourth div. | 47 Mouse is not visible, scrolling page so the mouse ends up on the fourth div. |
| 48 PASS document.body.scrollTop is 50 | 48 PASS document.documentElement.scrollTop is 50 |
| 49 PASS array[0].innerHTML is "was hovered" | 49 PASS array[0].innerHTML is "was hovered" |
| 50 PASS array[1].innerHTML is "was hovered" | 50 PASS array[1].innerHTML is "was hovered" |
| 51 PASS array[2].innerHTML is "currently hovered" | 51 PASS array[2].innerHTML is "currently hovered" |
| 52 PASS array[3].innerHTML is "hover over me" | 52 PASS array[3].innerHTML is "hover over me" |
| 53 PASS array[4].innerHTML is "hover over me" | 53 PASS array[4].innerHTML is "hover over me" |
| 54 PASS document.body.scrollTop is 100 | 54 PASS document.documentElement.scrollTop is 100 |
| 55 | 55 |
| OLD | NEW |