1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/379799-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 + 1.8 +<style id="firstLetterSheet"> 1.9 + .fl:first-letter { } 1.10 +</style> 1.11 + 1.12 +<style id="emptySheet"> 1.13 +</style> 1.14 + 1.15 +<script> 1.16 + 1.17 +function boom() 1.18 +{ 1.19 + document.getElementById("firstLetterSheet").textContent = ""; 1.20 + document.getElementById("emptySheet").textContent = ".aft:after { content: counter(chicken); }"; 1.21 +} 1.22 + 1.23 +</script> 1.24 + 1.25 +</head> 1.26 + 1.27 +<body onload="boom()"> 1.28 + 1.29 +<div class="fl">Foo <span class="aft">Bar</span></div> 1.30 + 1.31 +<p class="aft">Baz</p> 1.32 + 1.33 +</body> 1.34 +</html>