layout/reftests/bugs/201215-1.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/201215-1.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,22 @@
     1.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
     1.5 +<html>
     1.6 +<head>
     1.7 +  <title>Bug 201215</title>
     1.8 +</head>
     1.9 +<body>
    1.10 +<table><tr><td>
    1.11 +  <div style="background: #DDDDDD; float: right">text text text text text text <span id="insertHere"></span></div>
    1.12 +</td></tr></table>
    1.13 +<script type="text/javascript">
    1.14 +  function loadImage() {
    1.15 +    document.body.offsetWidth
    1.16 +    var img = document.createElement("img");
    1.17 +    img.src = "solidblue.png";
    1.18 +    img.alt = "";
    1.19 +    target = document.getElementById("insertHere");
    1.20 +    target.appendChild(img);
    1.21 +  }
    1.22 +  loadImage();
    1.23 +</script>
    1.24 +</body>
    1.25 +</html>

mercurial