tenfourfox/layout/reftests/table-anonymous-boxes/372649-1.html

16 lines
276 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#it { display: inline-table; }
</style>
</head>
<body>
<p>a<span id="it">b</span>d</p>
<script>
document.body.offsetWidth;
document.getElementById("it").appendChild(document.createTextNode("c"));
</script>
</body>
</html>