1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/854263-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +<!DOCTYPE html> 1.5 +<html class="reftest-wait"> 1.6 +<head> 1.7 + <style> 1.8 + .flexContainer { 1.9 + display: flex; 1.10 + 1.11 + width: 300px; 1.12 + height: 300px; 1.13 + background: yellow; 1.14 + } 1.15 + .flexItem { 1.16 + border: 1px dashed purple; 1.17 + } 1.18 + </style> 1.19 + <script> 1.20 + function finish() { 1.21 + document.documentElement.removeAttribute('class'); 1.22 + } 1.23 + </script> 1.24 +</head> 1.25 +<body onload="setTimeout(finish, 0)"> 1.26 + <div class="flexContainer"> 1.27 + <embed src="about:blank" class="flexItem"></embed> 1.28 + </div> 1.29 +</body> 1.30 +</html>