1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/tests/crashtests/783041-2.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 + #el0 { 1.11 + height: 200px ! important; 1.12 + height: 1em; 1.13 + width: 1em; 1.14 + padding: 5px; 1.15 + display: table; 1.16 + -moz-transform:translate3d(0, 80px, 0); 1.17 + } 1.18 + #el0:before { 1.19 + display: -moz-grid; 1.20 + content: counter(c, hiragana) attr(id); 1.21 + counter-increment: c 694; 1.22 + } 1.23 + #el0:after { 1.24 + counter-reset: c 694; 1.25 + content: counter(c, cjk-ideographic) attr(id); 1.26 + } 1.27 + #el1 { 1.28 + text-shadow: 0px 20px 0px, 0px -20px 10px; 1.29 + line-height: 4px; 1.30 + transform: translate3d(0px, -300px, 0px); 1.31 + display: table-row-group; 1.32 + border-spacing: 7px; 1.33 + } 1.34 + #el1:after { 1.35 + counter-reset: c; 1.36 + display: -moz-box; 1.37 + content: counter(c, cjk-ideographic) attr(id); 1.38 + counter-increment: c 694; 1.39 + } 1.40 + #el2 { 1.41 + display: table-row-group; 1.42 + -moz-transform:translate3d(0, 80px, 0); 1.43 + } 1.44 + #el2:after { 1.45 + content: counter(c, cjk-ideographic) attr(id); 1.46 + } 1.47 + </style> 1.48 + <script> 1.49 + onload = function() { 1.50 + el0=document.createElement('div') 1.51 + el0.setAttribute('id','el0') 1.52 + document.body.appendChild(el0) 1.53 + el1=document.createElement('div') 1.54 + el1.setAttribute('id','el1') 1.55 + el0.appendChild(el1) 1.56 + el2=document.createElement('q') 1.57 + el2.setAttribute('id','el2') 1.58 + el1.appendChild(el2) 1.59 + el0.appendChild(document.createTextNode('A')) 1.60 + setTimeout("location.reload()", 100) 1.61 + } 1.62 + </script> 1.63 + </head> 1.64 + <body> 1.65 + </body> 1.66 +</html>