summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/normal-flow/cross-domain-iframe-paint-order.sub.html
blob: 198d16ca0673a160fe70311321ab7e6bed1b3a52 (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
<!DOCTYPE html>
<title>Cross-domain iframe paint order</title>
<link rel="help" href="https://www.w3.org/TR/CSS2/zindex.html">
<link rel="match" href="cross-domain-iframe-paint-order-ref.html">
<style>
  iframe {
    display: block;
    background: red;
    width: 100px;
    height: 100px;
    padding: 30px;
    border: none;
    box-sizing: border-box;
  }
  #negative-margin {
    width: 100px;
    height: 100px;
    background: lime;
    margin-top: -100px;
  }
</style>
<iframe src="http://{{hosts[alt][www]}}:{{ports[http][0]}}/css/CSS2/normal-flow/support/green.html"></iframe>
<!-- #negative-margin should paint on top of the background of the iframe
    (but not the contents). -->
<div id="negative-margin"></div>