gfx/tests/crashtests/783041-4.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gfx/tests/crashtests/783041-4.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,82 @@
     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 +      #el0 { 
    1.11 +        height: 200px ! important; 
    1.12 +        padding: 4px; 
    1.13 +        white-space: pre-wrap; 
    1.14 +        margin-top: 0px; 
    1.15 +        display: table;
    1.16 +        font-size:.92em 
    1.17 +      }
    1.18 +
    1.19 +      #el0:before { 
    1.20 +        content: counter(c, hiragana-iroha); 
    1.21 +      } 
    1.22 +
    1.23 +      #el3 { 
    1.24 +        line-height: 3px; 
    1.25 +        text-shadow: 0px 5px 5px, 0px -20px 10px;
    1.26 +        display: table-row-group; 
    1.27 +        transform: translate3d(-30px, -300px, 0px); 
    1.28 +      }
    1.29 +
    1.30 +      #el3:before { 
    1.31 +        display: inline-block;
    1.32 +      }
    1.33 +
    1.34 +      #el5 { 
    1.35 +        height:1em;
    1.36 +        display:block; 
    1.37 +      } 
    1.38 +
    1.39 +      #el5:before {
    1.40 +        display: list-item;
    1.41 +      }
    1.42 +
    1.43 +      #el7 {
    1.44 +        font-size:.92em 
    1.45 +      } 
    1.46 +      .c4 { 
    1.47 +        margin: 1em;
    1.48 +        padding:0.4em 0.5em 0.4em 2.5em; 
    1.49 +        counter-increment: c; 
    1.50 +      } 
    1.51 +
    1.52 +      .c4:after {
    1.53 +        margin: 2px; 
    1.54 +        display: inline-block; 
    1.55 +      } 
    1.56 +    </style>
    1.57 +    <script>
    1.58 +      onload = function() {
    1.59 +        el7=document.createElement('iframe')
    1.60 +        el7.setAttribute('id', 'el7')
    1.61 +        document.body.appendChild(el7)
    1.62 +
    1.63 +        el0=document.createElement('ul')
    1.64 +        el0.setAttribute('id','el0')
    1.65 +        document.body.appendChild(el0)
    1.66 +
    1.67 +
    1.68 +        el3=document.createElement('q')
    1.69 +        el3.setAttribute('id','el3')
    1.70 +        el0.appendChild(el3)
    1.71 +
    1.72 +        el5=document.createElement('q')
    1.73 +        el5.setAttribute('id','el5')
    1.74 +        el3.appendChild(el5)
    1.75 +
    1.76 +        el0.appendChild(document.createTextNode('A'))
    1.77 +
    1.78 +        el0.setAttribute('class', 'c4'); 
    1.79 +        el7.setAttribute('class', 'c4'); 
    1.80 +      }
    1.81 +    </script>
    1.82 +  </head>
    1.83 +  <body>
    1.84 +  </body>
    1.85 +</html>

mercurial