1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/866588.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 +<meta charset="UTF-8"> 1.8 +<style> 1.9 + 1.10 +body { white-space: pre-wrap; width: 1ch; font-family: monospace } 1.11 +body:first-line { } 1.12 + 1.13 +</style> 1.14 + 1.15 +<script> 1.16 + 1.17 +function boom() 1.18 +{ 1.19 + document.body.textContent = "\n\u202AX "; 1.20 + document.documentElement.offsetHeight; 1.21 + document.body.appendChild(document.createTextNode("Y")); 1.22 + document.documentElement.offsetHeight; 1.23 +} 1.24 + 1.25 +</script> 1.26 +</head> 1.27 +<body onload="boom();"></body> 1.28 +</html>