haikuwebkit/LayoutTests/fast/table/quote-text-around-iframe.html

12 lines
278 B
HTML

<!DOCTYPE html>
<!-- You should see Quote followed by A, followed by iframe, followed by B and ending in Quote -->
<body>
<q style="display: table-row;">
A<iframe></iframe>B
</q>
<script>
document.body.offsetTop;
document.body.style.zoom = "200%";
</script>
</body>
</html>