mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
378 B
HTML
17 lines
378 B
HTML
<!doctype html>
|
|
<html>
|
|
<body>
|
|
<ol>
|
|
<li id="inline-script">Inline script (green if allowed, black if blocked)</li>
|
|
</ol>
|
|
|
|
<script>
|
|
// Use inline script to set a style attribute
|
|
document.getElementById("inline-script").style.color = "rgb(0, 128, 0)";
|
|
</script>
|
|
|
|
<img src="file_CSP.sjs?testid=img_bad&type=img/png"></img>
|
|
|
|
</body>
|
|
</html>
|