summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/multiple-iframes-with-allow-scripts-crash.html
blob: 572f119be8e41130c62eb5a01ba4b9c8c0832080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
    <body>
        <style>
          iframe {
            margin: 10px;
            float: left;
            width: 300px;
            height: 300px;
            border: none;
          }
        </style>
        <iframe sandbox="allow-scripts" src="resources/hello-world.html"> </iframe>
        <iframe sandbox="allow-scripts" src="resources/hello-world.html"> </iframe>
    </body>
</html>