You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module Main exposing (main)
import Html
import Html.Attributes
main =
Html.iframe
[ Html.Attributes.srcdoc """
<body><script>
alert('Hello from the iFrame')
window.parent.document.body.innerHTML = 'XSS in Elm packages?'
</script></body>
"""
]
[]