Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<html>
<head>
</head>
<body>
<table><tr><td>
<div style="background: #DDDDDD; float: right">text text text text text text <span id="insertHere"></span></div>
</td></tr></table>
<script type="text/javascript">
function loadImage() {
document.body.offsetWidth
var img = document.createElement("img");
img.src = "solidblue.png";
img.alt = "";
target = document.getElementById("insertHere");
target.appendChild(img);
}
loadImage();
</script>
</body>
</html>