index.html 722 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1 2 3 4
<!DOCTYPE HTML>
<!-- Copyright 2014 The Flutter Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
5 6
<html>
<head>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
  <title>Flutter Test Browser Host</title>
  <style>
    /* Configure so that the test application takes up the whole screen */
    body {
      margin: 0;
      padding: 0;
      position: fixed;
      top: 0px;
      left: 0px;
      overflow: hidden;
    }

    iframe {
      border: none;
      width: 2400px;
      height: 1800px;
      position: fixed;
      top: 0px;
      left: 0px;
      overflow: hidden;
    }
  </style>
29 30 31 32 33 34
</head>
<body>
  <div id="dark"></div>
  <script src="host.dart.js"></script>
</body>
</html>