summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/hover-affects-child.html
blob: b8cb8aadb14a0a7566fc5cc6b4437d5aaaeb8dfa (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
58
59
<html>
    <head>
        <style>
            div {
                width: 200px;
                height: 200px;
                background-color: red;
            }

            div div {
                position: absolute;
                left: -1000px;
                background-color: green;
            }

            div:hover div {
                left: auto;
            }
        </style>
        <script>
            function log(msg) {
                var console = document.getElementById('console');
                var newNode = document.createElement('li');
                newNode.innerText = msg;
                console.appendChild(newNode);
            }
            var testedHoverState = false;
            function testHoverState() {
                if (testedHoverState)
                    return;
                testedHoverState = true;
                var innerElem = document.getElementById('innerElem');
                var calculatedStyle = window.getComputedStyle(innerElem);
    
                if (calculatedStyle.getPropertyValue('left') == "auto")
                    log("PASSED: Calculated style of inner element is correct");
                else
                    log("FAILED: Calculated style of inner element is wrong, should be 'left: auto'");
            }
        
            function runTest() {
                if (!window.testRunner) 
                    return;
                testRunner.dumpAsText();
                var targetElem = document.getElementById('targetElem');
                eventSender.mouseMoveTo(targetElem.offsetLeft + targetElem.offsetWidth / 2, 
                                        targetElem.offsetTop + targetElem.offsetHeight / 2);
            }
        </script>
    </head>
    <body onload="runTest()">
        This tests that a style that affects child elements when hovering 
        over a parent element correctly recalculates the child style.  To 
        test manually move the mouse over the red square, it should become 
        green.
        <div id="targetElem" onmousemove="testHoverState()"><div id="innerElem"></div></div>
        <ul id="console"></ul>
    <body>
</html>