blob: 1254089063d25b90054b4f43382ce4b2bf7a8fb9 [file] [log] [blame] [edit]
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Regions: Remove element from named flow on CSS hover</title>
<link rel="author" title="Mihai Balan" href="mailto:mibalan@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css3-regions/#the-flow-into-property">
<link rel="help" href="http://www.w3.org/TR/css3-regions/#flow-from">
<meta name="assert" content="Changing the flow-into property should be possible in rules that use the :hover pseudoclass">
<meta name="flags" content="interact ahem">
<style>
p {
margin: 0;
}
.box {
float: left;
width: 100px;
height: 200px;
margin: 10px;
}
#content {
background-color: lightgray;
font-family: Ahem;
font-size: 20px;
line-height: 1em;
}
#content p {
flow-into: f;
}
#content p:last-child {
color: lightblue;
}
#content p:last-child:hover {
flow-into: none;
}
#region {
background-color: lightgreen;
flow-from: f;
}
#region p {
width: 100%;
height: 50%;
background-color: red;
}
</style>
</head>
<body>
You should not see any red before or during this test.
<ol>
<li>You should see a tall gray rectangle alongside with a black and a blue square</li>
<li>Move the mouse over the blue square.</li>
<li>The blue square should appear in the gray rectangle on the left.</li>
</ol>
<div id="content" class="box">
<p>xxxxx<br>xxxxx<br>xxxxx<br>xxxxx<br>xxxxx</p>
<p>xxxxx<br>xxxxx<br>xxxxx<br>xxxxx<br>xxxxx</p>
</div>
<div id="region" class="box">
<p></p>
</div>
</body>
</html>