summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/css2.1/20110323/overflow-applies-to-008.htm
blob: f8a443c863a83b6da1ec1b040d26f7c412e794f9 (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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>CSS Test: overflow applied to elements with 'display' set to 'inline'</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
        <link rel="help" href="http://www.w3.org/TR/CSS21/visufx.html#propdef-overflow">
        <link rel="help" href="http://www.w3.org/TR/CSS21/visufx.html#overflow">
        <meta name="flags" content="ahem">
        <script src="../../resources/ahem.js"></script>
        <meta name="assert" content="The 'overflow' property does not apply to elements with 'display' set to 'inline'.">
        <style type="text/css">
            #parent
            {
                border: 5px solid transparent;
                color: white;
                font: 20px/1em Ahem;
                width: 5em;
            }
            div div
            {
                display: inline;
                overflow: hidden;
                white-space: nowrap;
            }
            #span2
            {
                color: green;
            }
        </style>
    </head>
    <body>
        <p>Test passes if there is a green box below.</p>
        <div id="parent">
            <div><span>XXXXX</span><span id="span2">XXXXX</span></div>
        </div>
    </body>
</html>