summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_020a.htm
blob: ccfa4eae2e2f69585b3a1b944b9e3a7f5b474a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
    <title>Page with script</title>
</head>
<body>
    <div>Script Execution: <span id="scriptExecute" style="Color: Green">Blocked</span></div>
    <script type="text/javascript">
        document.getElementById("scriptExecute").innerHTML = "Not Blocked";
        document.getElementById("scriptExecute").style.color = "Red";
    </script>
</body>
</html>