gfx/tests/crashtests/783041-1.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gfx/tests/crashtests/783041-1.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,63 @@
     1.4 +<html>
     1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.6 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/.  -->
     1.8 +  <head>
     1.9 +    <style>
    1.10 +      #el7 {
    1.11 +        font-size:.92em 
    1.12 +      } 
    1.13 +      #el0 { 
    1.14 +        height: 200px ! important; 
    1.15 +        margin: 0px; 
    1.16 +        display: table;
    1.17 +        font-size:.92em 
    1.18 +      }
    1.19 +
    1.20 +      #el3 { 
    1.21 +        line-height: 0.5px; 
    1.22 +        text-shadow: 0px 5px 5px, 0px -20px 10px;
    1.23 +        display: table-row-group; 
    1.24 +        transform: translate3d(-3px, -300px, 0px); 
    1.25 +      }
    1.26 +
    1.27 +      #el5 { 
    1.28 +        height:1em;
    1.29 +        display:block; 
    1.30 +      } 
    1.31 +
    1.32 +      .c4 { 
    1.33 +        margin: 1em;
    1.34 +        padding: 0.5em;
    1.35 +      } 
    1.36 +    </style>
    1.37 +    <script>
    1.38 +      onload = function() {
    1.39 +        el7=document.createElement('iframe')
    1.40 +        el7.setAttribute('id', 'el7')
    1.41 +        document.body.appendChild(el7)
    1.42 +
    1.43 +        el0=document.createElement('span')
    1.44 +        el0.setAttribute('id','el0')
    1.45 +        document.body.appendChild(el0)
    1.46 +        el0.appendChild(document.createTextNode('A'))
    1.47 +
    1.48 +        el3=document.createElement('q')
    1.49 +        el3.setAttribute('id','el3')
    1.50 +        el0.appendChild(el3)
    1.51 +
    1.52 +        el5=document.createElement('q')
    1.53 +        el5.setAttribute('id','el5')
    1.54 +        el3.appendChild(el5)
    1.55 +
    1.56 +        el0.appendChild(document.createTextNode('A'))
    1.57 +
    1.58 +        document.body.offsetTop
    1.59 +        el0.setAttribute('class', 'c4'); 
    1.60 +        el7.setAttribute('class', 'c4'); 
    1.61 +      }
    1.62 +    </script>
    1.63 +  </head>
    1.64 +  <body>
    1.65 +  </body>
    1.66 +</html>

mercurial