1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/343206-1.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait"> 1.5 + 1.6 +<style id="sty"> 1.7 +html::before { 1.8 + content: "before text"; 1.9 + float: right; 1.10 +} 1.11 +</style> 1.12 + 1.13 +<script> 1.14 +function boom() 1.15 +{ 1.16 + var sty = document.getElementById("sty"); 1.17 + sty.appendChild(document.createTextNode(" ")); 1.18 + document.documentElement.removeAttribute("class"); 1.19 +} 1.20 + 1.21 +setTimeout(boom, 30); 1.22 +</script> 1.23 + 1.24 +</html>