blob: 99f385f6eaf3ebdbc5b8c4517c9a7ec7fce50117 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<script>
window.onload = function() {
document.querySelector('object').appendChild(document.querySelector('#move-me'));
};
</script>
</head>
<body dir="rtl">
<object></object>
<table>
<caption style="display:none">
<span>
<div id="move-me"></div>
</span>
</caption>
</table>
</body>
|