gecko/layout/reftests/css-grid/grid-whitespace-handling-1-ref.xhtml
Mats Palmgren af2665068b Bug 1000376 - part 4, Add some grid item tests. r=dholbert
These are only for detecting assertions/crashes for now since grid layout isn't implemented yet.

--HG--
rename : layout/reftests/w3c-css/submitted/flexbox/flexbox-whitespace-handling-1-ref.xhtml => layout/reftests/css-grid/grid-whitespace-handling-1-ref.xhtml
rename : layout/reftests/w3c-css/submitted/flexbox/flexbox-whitespace-handling-1a.xhtml => layout/reftests/css-grid/grid-whitespace-handling-1a.xhtml
rename : layout/reftests/w3c-css/submitted/flexbox/flexbox-whitespace-handling-1b.xhtml => layout/reftests/css-grid/grid-whitespace-handling-1b.xhtml
rename : layout/reftests/w3c-css/submitted/flexbox/flexbox-whitespace-handling-2-ref.xhtml => layout/reftests/css-grid/grid-whitespace-handling-2-ref.xhtml
rename : layout/reftests/w3c-css/submitted/flexbox/flexbox-whitespace-handling-2.xhtml => layout/reftests/css-grid/grid-whitespace-handling-2.xhtml
rename : layout/reftests/w3c-css/submitted/flexbox/support/ahem.css => layout/reftests/css-grid/support/ahem.css
rename : layout/reftests/w3c-css/submitted/flexbox/support/solidblue.png => layout/reftests/css-grid/support/solidblue.png
2014-05-03 13:42:33 +00:00

53 lines
1.3 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!--
Reference case, with inline-blocks instead of grid/grid items,
with positioning done using margins.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
<style>
div { height: 100px; }
div.grid {
border: 1px dashed blue;
width: 200px;
}
div.a {
width: 30px;
background: lightgreen;
display: inline-block;
}
div.b {
width: 20px;
background: lightblue;
display: inline-block;
}
img {
width: 40px;
height: 100%;
}
</style>
</head>
<body>
<div class="grid">
<div class="a" style="margin-left: 85px"/>
</div>
<div class="grid">
<div class="a" style="margin-left: 37.5px"
/><div class="b" style="margin-left: 75px"/>
</div>
<div class="grid">
<img src="solidblue.png" style="margin-left: 30px"
/><img src="solidblue.png" style="margin-left: 60px"/>
</div>
</body>
</html>