summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/background-size-percentage-root.html
blob: 896ce85336ed35daa4b80dc43c7d968966cda810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<title>Percentage background-size on the root, when it's out-of-flow</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-size">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1658140">
<link rel="match" href="background-size-percentage-root-ref.html">
<style>
  :root {
    position: fixed;
    width: 100px;
    height: 50px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url('/images/green-100x50.png');
  }
</style>