layout/generic/crashtests/463785.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/generic/crashtests/463785.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,40 @@
     1.4 +<html xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml" class="reftest-wait">
     1.5 +
     1.6 +<bindings xmlns="http://www.mozilla.org/xbl" xmlns:xlink="http://www.w3.org/1999/xlink">
     1.7 +<binding id="xbl">
     1.8 +<content>
     1.9 +<div xmlns="http://www.w3.org/1999/xhtml" style="border: 100px solid red;">
    1.10 +<div  style="position: fixed;"/>
    1.11 +</div>
    1.12 +</content>
    1.13 +</binding>
    1.14 +</bindings>
    1.15 +
    1.16 +<div style="position: absolute; -moz-column-count: 2;">
    1.17 +<table style="border: 100px solid green;" id="c">
    1.18 +<tr id="b" style="-moz-binding:url(#xbl)">
    1.19 +<td style="position: absolute;">
    1.20 +m
    1.21 +  <span id="a">
    1.22 +    <div style="border: 100px solid black;">
    1.23 +       <div style="position: fixed;"/>
    1.24 +    </div>
    1.25 +  </span>
    1.26 +
    1.27 +</td>
    1.28 +</tr>
    1.29 +</table>
    1.30 +</div>
    1.31 +
    1.32 +<script>
    1.33 +var doc = document;
    1.34 +function doe() {
    1.35 +  var newNode = document.createElementNS("http://www.w3.org/1999/xhtml", 'div');
    1.36 +  newNode.innerHTML = '<div xmlns="http://www.w3.org/1999/xhtml" style="border: 100px solid black;"><div  style="position: fixed;"/></div>';
    1.37 +  document.getElementById('c').insertBefore(newNode, doc.getElementById('b'));
    1.38 +  document.getElementById('b').removeAttribute('style');
    1.39 +  document.documentElement.removeAttribute("class");
    1.40 +}
    1.41 +setTimeout(doe, 100);
    1.42 +</script>
    1.43 +</html>

mercurial