WIP: Give developers an opt-in mechanism to block some parser-inserted scripts.
These should be straightforward:
- document.write('<script>');
- document.writeln('<script>');
Cascading through (multiply-)nested frames like these will be less so:
- document.write('<iframe srcdoc="<script>">');
- document.writeln('<iframe srcdoc="<script>">');
- element.{inner,outer}HTML = '<iframe srcdoc="<script>">';
- element.insertAdjacentHTML('<iframe srcdoc="<script>">');
BUG=
684435