Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /accessibility/crashtests/table-ignored-child.html - WPT Dashboard Interop Dashboard
<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>