Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham 2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View file

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html><head>
<title>CSS Regions region-fragment-break-1</title>
<link href="mailto:andhall@adobe.com" rel="author" title="Andy Hall">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<link href="http://www.w3.org/TR/css3-regions/#the-region-fragment-property" rel="help">
<meta content="If the content fits within the CSS Region, then setting region-fragment: break; has no effect. " name="assert">
<link href="reference/region-fragment-break-1-ref.htm" rel="match">
<style>
#region {
width: 100px;
height: 200px;
background-color: red;
flow-from: f;
region-fragment: break;
}
.box {
width: 100px;
height: 100px;
flow-into: f;
background-color: green;
}
</style>
</head>
<body>
<p>
Test passes if you see a green rectangle and no red.
</p>
<div class="box"></div>
<div class="box"></div>
<div id="region"></div>
</body></html>