зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
407 B
HTML
15 строки
407 B
HTML
<html>
|
|
<script>
|
|
window.onload=function(){
|
|
document.getElementById('b').textContent='Or';
|
|
document.getElementById('a').insertBefore(document.getElementById('c'), undefined);
|
|
document.getElementById('b').dir='ltr';
|
|
let o=document.getElementById('b');
|
|
o.parentNode.replaceChild(document.createElement('code'), o);
|
|
}
|
|
</script>
|
|
<body dir='auto' id='a'>
|
|
<bdi id='b' dir='auto'>
|
|
</bdi>
|
|
<q id='c'>
|
|
</html> |