1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/editor/reftests/642800-iframe.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 + <style> 1.8 + @media only screen and (max-width: 480px) { 1.9 + .overflow-hidden 1.10 + { 1.11 + overflow: hidden; 1.12 + } 1.13 + 1.14 + .float-left 1.15 + { 1.16 + float: left; 1.17 + background: #f0f; 1.18 + } 1.19 + } 1.20 + </style> 1.21 +</head> 1.22 +<body> 1.23 + <h1>Iframe content</h1> 1.24 + <div class="float-left"> 1.25 + <textarea>This text should be visible when window is resized </textarea> 1.26 + 1.27 + </div> 1.28 + <div class="overflow-hidden"> 1.29 + <textarea>This text should be visible when window is resized </textarea> 1.30 + </div> 1.31 +</body> 1.32 +</html>