1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/412651-1-frame.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 1.5 + 1.6 +<head> 1.7 + 1.8 +<style type="text/css" id="s"></style> 1.9 + 1.10 +<script type="text/javascript"> 1.11 + 1.12 +function lo() 1.13 +{ 1.14 + window.onerror = oe; 1.15 + setTimeout(function(){ location.reload(); }, 200); 1.16 +} 1.17 + 1.18 +function oe(a,b,c) 1.19 +{ 1.20 + document.getElementById("s").textContent = ".nosuch { color: red }"; 1.21 +} 1.22 + 1.23 +</script> 1.24 + 1.25 +</head> 1.26 + 1.27 +<body onload="lo();"> 1.28 + <xul:preference/> 1.29 + <xul:tabs/> 1.30 +</body> 1.31 + 1.32 +</html>