layout/base/crashtests/349095-1.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/base/crashtests/349095-1.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,25 @@
     1.4 +<html xmlns="http://www.w3.org/1999/xhtml">
     1.5 +<head>
     1.6 +
     1.7 +<style>
     1.8 +body:first-letter { }
     1.9 +body { display: inline; }
    1.10 +</style>
    1.11 +
    1.12 +<script>
    1.13 +function foo()
    1.14 +{
    1.15 +  document.getElementById("aa").style.display = "block";
    1.16 +}
    1.17 +</script>
    1.18 +
    1.19 +</head>
    1.20 +
    1.21 +<body onload="foo()">
    1.22 +  <input type="text" style="display: block;" />
    1.23 +  <span>Z</span>
    1.24 +  <span id="aa">A</span>
    1.25 +  <span style="display: block;">B</span>
    1.26 +</body>
    1.27 +
    1.28 +</html>

mercurial