зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
378 B
HTML
16 строки
378 B
HTML
<script>
|
|
window.onload = () => {
|
|
b.addEventListener('DOMSubtreeModified', () => {
|
|
var o = document.getElementById('a')
|
|
var a = o.attributes
|
|
for (let j = 0; j < a.length; j++) {
|
|
o.setAttribute(a[j].name, 'i')
|
|
o.parentNode.appendChild(o)
|
|
}
|
|
})
|
|
b.setAttribute('a', b)
|
|
}
|
|
</script>
|
|
<iframe id='a' sandbox='' allowfullscreen=''></iframe>
|
|
<dfn id='b'>
|