summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-001-ref.html
blob: 138f0acbf03c2474c4f90a88a2d9979fc3756566 (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
<!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 Reftest Reference</title>
    <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
    <style>
      div {
        margin: 1px;
        background: lime;
        float: left;
      }

      .square {
        width: 24px;
        height: 24px;
      }
      .bigWide {
        width: 48px;
        height: 32px;
      }
      .bigTall {
        width: 32px;
        height: 48px;
      }
      .small {
        width: 8px;
        height: 8px;
      }

      br { clear: both; }

    </style>
  </head>
  <body>
    <!-- Note: the specified heights here are just 1/2 the widths. -->
    <div class="square"></div>
    <div class="square" style="height: 12px"></div>
    <br>
    <div class="bigWide"></div>
    <div class="bigWide" style="height: 24px"></div>
    <br>
    <div class="bigTall"></div>
    <div class="bigTall" style="height: 16px"></div>
    <br>
    <div class="small"></div>
    <div class="small" style="height: 4px"></div>
    <br>
  </body>
</html>