summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/transform-009-ref.html
blob: d7d3ebf604c62d80874d4f42a2dc71744c776b75 (plain)
1
2
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
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-break-3/#transforms">
<style>
  .fakecolumn {
      width: 100px;
      height: 100px;
  }
  .relpos {
      position: relative;
      width: 30px;
      top: 50px;
      left: 50px;
  }
  .transform {
      transform: rotate(45deg);
      height: 100%;
  }
  .abspos {
      position: absolute;
      width: 100%;
      height: 100%;
      background: green;
  }
</style>
<p>Below there should be six rotated green rectangles (not all with the same
  size).</p>
<div style="display:flex;">
  <div class="fakecolumn">
    <div class="relpos" style="margin-top:50px;">
      <div class="transform" style="height:0;">
        <div class="abspos" style="height:50px;"></div>
      </div>
    </div>
  </div>
  <div class="fakecolumn">
    <div class="relpos">
      <div class="transform" style="height:0;">
        <div class="abspos" style="height:100px;"></div>
      </div>
    </div>
  </div>
  <div class="fakecolumn">
    <div class="relpos" style="margin-top:50px;">
      <div class="transform" style="height:50px;">
        <div class="abspos" style="top:-50px; height:100px;"></div>
      </div>
    </div>
  </div>
  <div class="fakecolumn">
    <div class="relpos">
      <div class="transform" style="height:100px;">
        <div class="abspos"></div>
      </div>
    </div>
  </div>
  <div class="fakecolumn">
    <div class="relpos">
      <div class="transform" style="height:0;">
        <div class="abspos" style="height:100px;"></div>
      </div>
    </div>
  </div>
  <div class="fakecolumn">
    <div class="relpos">
      <div class="transform" style="height:0;">
        <div class="abspos" style="height:50px;"></div>
      </div>
    </div>
  </div>
</div>