Binding to a property without security context:
innerText (safeContent)
"Safe" content that requires a security context will throw because the contents could potentially be dangerous ...
innerHTML (safeContent)
... so that actually dangerous content cannot be executed:
innerHTML (unsafeContent)
... but unsafe Content that has been trusted explicitly works - only do this if you are 100% sure!
innerHTML (trustedUnsafeContent)