summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/positioning/position-fixed-006.xht
blob: e9c73c38f2e3316a1d87bbce186f8048c2435576 (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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html id="test" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>CSS Test: Non-static position on the root element</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#propdef-position" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#choose-position" />
        <meta name="flags" content="dom may" />
        <meta name="assert" content="Root elements may treat non-static positions as 'static'." />
        <style type="text/css">
            html
            {
                position: fixed;
            }
        </style>
    </head>
    <body>
        <p>Test passes if the word "fixed" or "static" is below this text.</p>
        <script type="text/javascript">
            var el = document.getElementById('test');
            document.body.appendChild(document.createTextNode(window.getComputedStyle(el, null).position));
        </script>
    </body>
</html>