summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/normal-flow/video-paint-order.html
blob: 5c259606bec8da31d001430a9405e273328f1fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<title>Video paint order</title>
<link rel="author" title="Philip Rogers" href="pdr@chromium.org">
<link rel="help" href="https://www.w3.org/TR/CSS2/zindex.html">
<link rel="match" href="video-paint-order-ref.html">
<style>
  video {
    background: red;
    width: 95px;
    height: 95px;
  }
  #negative-margin {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: green;
    margin-left: -100px;
  }
</style>
<video></video>
<!-- #negative-margin should paint fully on top of the video. -->
<div id="negative-margin"></div>