| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 
 | <!DOCTYPE HTML>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
  <meta charset="utf-8">
  <title>CSS Grid Test: Testing track sizing</title>
  <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1151212">
  <style type="text/css">
body,html { color:black; background:white; font-size:8px; line-height:10px; padding:0; margin:0; }
body { width: 800px; }
.grid {
  display: block;
  border: 3px dashed blue;
  margin-bottom:20px;
  float: left;
  clear: left;
  position:relative;
}
.c1 { min-height:20px; min-width:10px;  }
.c2 { min-height:20px; min-width:10px; }
.c3 { min-height:0;    min-width:20px; }
.r1 { min-height:10px;  }
.x1 { min-height:10px; min-width:0px; border-style:none; }
span {
  display: block;
  background: gray;
  border-style: solid;
  border-width: 1px 3px 5px 7px;
  justify-self: flex-start;
}
x { display:inline-block; height:10px; width:18px; }
  </style>
</head>
<body>
<div class="grid flex" style="width:0;height:0;"></div>
<div class="grid flex" style="width:1px;height:1px;"></div>
<div class="grid mm" style="width:0;height:0;"></div>
<div class="grid mm" style="width:1px;height:1px;"></div>
<div class="grid zero" style="width:0;height:0;"></div>
<div class="grid zero" style="width:1px;height:1px;"></div>
<!-- TODO: fails due to broken align:stretch
<div class="grid flex" style="width:0;height:0;"><span class="c1"><x></x></span><span class="c2" style="position:relative;top:0px;width:0;min-height:0;height:1px;min-width:0;border-width:0 0 0 10px;z-index:1;"><x></x></span></div>
<div class="grid flex" style="width:1px;height:1px;"><span class="c1" style="margin-top:1px"><x></x></span></div>
-->
<div class="grid mm" style="width:0;height:0;"><span class="c1" style="min-width:18px;min-height:10px"><x></x></span><span class="c2" style="position:relative;left:14px;width:18px;min-width:0;z-index:-1"><x></x></span></div>
<div class="grid mm" style="width:1px;height:1px;"><span class="c1" style="min-width:18px;min-height:10px"><x></x></span><span class="c2" style="position:relative;left:14px;width:18px;min-width:0;z-index:-1"><x></x></span></div>
<!-- TODO: fails due to broken align:stretch
<div class="grid zero" style="width:0;height:0;"><span class="c1"><x></x></span></div>
<div class="grid zero" style="width:1px;height:1px;"><span class="c1"><x></x></span></div>
-->
<div class="grid flex">
<span class="c1 r1"><x></x></span>
</div>
<div class="grid flex10">
<span class="x1"></span></div>
<div class="grid flex10" style="width:0.010px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:0.020px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:0.040px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:0.15px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:0.18px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:0.19px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:1px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:2px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:3px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:4px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:5px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:6px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:7px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:8px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:9px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:10px; clear:none;">
<span class="x1"></span></div>
<div class="grid flex10" style="width:11px; clear:none;">
<span class="x1"></span></div>
</body>
</html>
 |