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,40 @@
<!DOCTYPE html>
<html><head>
<title>CSS Flexible Box Test: justify-content_space-around</title>
<link href="http://www.intel.com" rel="author" title="Intel">
<link href="http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content" rel="help">
<meta content="" name="flags">
<meta content="Check if the web engine can indentify the justy-content value space-around." name="assert">
<style>
#test01, #test02, #test03{
text-align:center;
font-size: 20px;
width: 30px;
}
#test01{
background: #7FFF00;
}
#test02{
background: #00FFFF;
}
#test03{
background: #4169E1;
}
#test{
background: #ff0000;
height: 200px;
width: 200px;
display: flex;
justify-content: space-around;
}
</style>
</head>
<body>
<p>Test passes if:<br>
1. the rectangle 1, 2, 3 show up in a row in a red rectangle.<br>
2. the rectangle 1, 2, 3 are distributed such that the empty space between any two adjacent rectangle is the same, and the empty space of the row before the first and after the last rectangle are half the size of the other empty spaces.<br>
3. the height of the 1, 2, 3 is the same as the height of the red rectangle.</p>
<div id="test"><div id="test01">1</div><div id="test02">2</div><div id="test03">3</div></div>
</body></html>