summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/old-tests/submission/Microsoft/sandbox/iframe_sandbox_020a.htm
blob: a419c9413f8ad72f5c313bce5401f2332bf77d8f (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>