Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/ui/overflow-applies-to-013.xht - WPT Dashboard Interop Dashboard
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: overflow applied to elements with 'display' set to 'table'</title>
<link rel="reviewer" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-08-09 -->
<link rel="match" href="../reference/ref-if-there-is-no-red.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'overflow' property applies to elements with 'display' set to 'table'." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#table
{
border: 5px solid transparent;
color: white;
display: table;
font: 20px/1em Ahem;
overflow: hidden;
table-layout: fixed;
width: 5em;
}
#row
{
display: table-row;
}
#cell
{
display: table-cell;
white-space: nowrap;
}
#span2
{
color: red;
}
</style>
</head>
<body>
<p>Test passes if there is <strong>no red</strong>.</p>
<div id="table">
<div id="row">
<div id="cell"><span>XXXXX</span><span id="span2">XXXXX</span></div>
</div>
</div>
</body>
</html>