summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/compositing/iframes/remove-iframe-crash.html
blob: c3e8d9ac2260cbf798a7b95928e03b098db5ea4f (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
<!DOCTYPE html>

<html>
<head>
  <style type="text/css" media="screen">
    iframe {
        border: 10px solid black;
        padding: 5px;
        margin: 20px;
        height: 150px;
        width: 300px;
        -webkit-box-shadow: 0 0 20px black;
        transform: translateZ(0);
    }

    .overlay {
      position: absolute;
      width: 50px;
      height: 50px;
      top: 5px;
      left: 5px;
      background-color: rgba(0, 0, 0, 0.2);
    }
  </style>
  <script type="text/javascript" charset="utf-8">
    if (window.testRunner)
      testRunner.dumpAsText();

    function doTest()
    {
      var iframe = document.getElementsByTagName('iframe')[0];
      iframe.parentNode.removeChild(iframe);
    }
    
    window.addEventListener('load', doTest, false);
  </script>
</head>
<body>
  
  <iframe src="resources/composited-subframe.html"></iframe>
  <div class="overlay"></div>
  <p>This test should not crash.</p>
</body>
</html>