1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-import/290018-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,13 @@ 1.4 +<!DOCTYPE html> 1.5 +<body> 1.6 + <iframe></iframe> 1.7 + <script> 1.8 + var win = window.frames[0]; 1.9 + win.document.open(); 1.10 + win.document.write("<!DOCTYPE html><html><head></head><body></body></html>"); 1.11 + win.document.close(); 1.12 + win.document.body.innerHTML = "<link rel='stylesheet' type='text/css' href='outer-sheet.css' />"; 1.13 + win.document.body.innerHTML += "<p style='padding:2px'>test</p>"; 1.14 + </script> 1.15 +</body> 1.16 +