mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
593 B
HTML
16 lines
593 B
HTML
<html>
|
|
<head>
|
|
<title>CSP inline script tests</title>
|
|
</head>
|
|
<body onload="window.parent.scriptRan(false, 'eventattr', 'event attribute in body tag fired')">
|
|
|
|
<script type="text/javascript">
|
|
window.parent.scriptRan(false, "textnode", "text node in a script tag executed.");
|
|
</script>
|
|
|
|
<iframe src='javascript:window.parent.parent.scriptRan(false, "jsuri", "javascript: uri in image tag")' ></iframe>
|
|
|
|
<a id='anchortoclick' href='javascript:window.parent.scriptRan(false, "jsuri", "javascript: uri in anchor tag ran when clicked.");'>stuff</a>
|
|
</body>
|
|
</html>
|