| OLD | NEW |
| 1 function getHoverActiveState(e) | 1 function getHoverActiveState(e) |
| 2 { | 2 { |
| 3 var states = { | 3 var states = { |
| 4 "rgb(0, 0, 255)": "default", | 4 "rgb(0, 0, 255)": "default", |
| 5 "rgb(0, 255, 0)": "active", | 5 "rgb(0, 255, 0)": "active", |
| 6 "rgb(255, 0, 0)": "hovered", | 6 "rgb(255, 0, 0)": "hovered", |
| 7 "rgb(255, 255, 0)": "hoveredAndActive" | 7 "rgb(255, 255, 0)": "hoveredAndActive" |
| 8 }; | 8 }; |
| 9 | 9 |
| 10 var color = window.getComputedStyle(e).backgroundColor; | 10 var color = window.getComputedStyle(e).backgroundColor; |
| 11 var result = states[color]; | 11 var result = states[color]; |
| 12 if (!result) | 12 if (!result) |
| 13 result = "unknown: " + color; | 13 result = "unknown: " + color; |
| 14 return result; | 14 return result; |
| 15 } | 15 } |
| 16 | 16 |
| 17 function elementCenter(e) | 17 function elementCenter(e) |
| 18 { | 18 { |
| 19 return { | 19 return { |
| 20 x: e.offsetLeft + e.offsetWidth / 2, | 20 x: e.offsetLeft + e.offsetWidth / 2, |
| 21 y: e.offsetTop + e.offsetHeight / 2 | 21 y: e.offsetTop + e.offsetHeight / 2 |
| 22 } | 22 } |
| 23 } | 23 } |
| 24 | 24 |
| 25 function shouldBeDefault(e) { shouldBeEqualToString(e, "default"); } | 25 function shouldBeDefault(e) { shouldBeEqualToString(e, "default"); } |
| 26 function shouldBeOnlyActive(e) { shouldBeEqualToString(e, "active"); } | 26 function shouldBeOnlyActive(e) { shouldBeEqualToString(e, "active"); } |
| 27 function shouldBeOnlyHovered(e) { shouldBeEqualToString(e, "hovered"); } | 27 function shouldBeOnlyHovered(e) { shouldBeEqualToString(e, "hovered"); } |
| 28 function shouldBeHoveredAndActive(e) { shouldBeEqualToString(e, "hoveredAndActiv
e"); } | 28 function shouldBeHoveredAndActive(e) { shouldBeEqualToString(e, "hoveredAndActiv
e"); } |
| OLD | NEW |