1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20

content / test / data / fenced_frames / viewport_child.html [blame]

<!DOCTYPE html>
<html>
  <head>
    <!-- Should be ignored inside fenced-frame -->
    <meta name="viewport" content="width=2000,minimum-scale=2">
    <style type="text/css">
      html {
        width: 100%;
      }
      div {
        width: 100px;
        height: 100px;
        background-color: red;
      }
    </style>
  </head>
  <body>
    <div>100x100</div>
  </body>
</html>