servo/tests/wpt/css-tests/css-break-3_dev/xhtml1/regions-transforms-022.xht

84 lines
No EOL
2.8 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta charset="UTF-8" />
<title>CSS Regions: Transforms on multiple named flow (text) content nodes that break across multiple regions</title>
<link href="mailto:dalcala@adobe.com" rel="author" title="David Alcala" />
<link href="mailto:rhauck@adobe.com" rel="author" title="Rebecca Hauck" />
<link href="mailto:mibalan@adobe.com" rel="reviewer" title="Mihai Balan" /> <!-- 2013-07-24 -->
<link href="http://www.w3.org/TR/css3-regions/#the-flow-into-property" rel="help" />
<link href="http://www.w3.org/TR/css3-regions/#flow-from" rel="help" />
<link href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions" rel="help" />
<link href="http://www.w3.org/TR/css3-break/#transforms" rel="help" />
<link href="reference/regions-transforms-020-ref.xht" rel="match" />
<meta content="ahem" name="flags" />
<meta content="This test checks that separate transforms can be applied to each named flow content
text node that breaks across multiple regions" name="assert" />
<style>
.ahem {
font-family: Ahem;
font-size: 10px;
line-height: 20px;
}
.named-flow {
width: 100px;
color: green;
flow-into: f;
}
#named-flow-1 {
margin-left: -50px;
transform: translateX(50px);
}
#named-flow-2 {
transform: rotate(90deg);
}
.region {
width: 100px;
height: 100px;
margin-left: 10px;
float: left;
flow-from: f;
}
.failure {
width: 100px;
height: 100px;
position: absolute;
float: left;
margin-left: 10px;
background-color: green;
z-index: -1;
}
.left {
color: red;
}
.right {
left: 118px;
}
.vertical-bar {
width: 10px;
height: 100px;
float: left;
background-color: red;
margin-left: 5px;
margin-right: 5px;
}
</style>
</head>
<body>
<p>The test passes if you see two green squares and no red.</p>
<div id="named-flow-1" class="ahem named-flow">XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX</div>
<div id="named-flow-2" class="ahem named-flow">XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX</div>
<div class="region"></div>
<div class="region"></div>
<div class="ahem failure left">
XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX
</div>
<div class="ahem failure right">
<div class="vertical-bar"></div>
<div class="vertical-bar"></div>
<div class="vertical-bar"></div>
<div class="vertical-bar"></div>
<div class="vertical-bar"></div>
</div>
</body></html>