display_mode_reflow_iframe.html (576B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" 2 "http://www.w3.org/TR/html4/strict.dtd"> 3 <html lang="en-US"> 4 <head> 5 <title>Display Mode Reflow inner frame</title> 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 7 <meta http-equiv="Content-Style-Type" content="text/css"> 8 <style type="text/css" id="style" media="all"> 9 div { 10 border: 2px solid black; 11 width: 50px; 12 height: 50px; 13 } 14 @media (display-mode: fullscreen) { 15 #a { height: 100px; } 16 } 17 </style> 18 </head> 19 <body> 20 <div id="a"></div> 21 <div id="b"></div> 22 </body> 23 </html>