summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/chrome/inspector_display-type.html
blob: 7bd0da67095f9c9666a93c8f56fd35533db6a581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<body>
    <div id="inline-block" style="display: inline-block">
      HELLO WORLD
    </div>
    <div id="grid" style="display: grid"></div>
    <div id="block" style="position: fixed"></div>
    <script>
       "use strict";

       window.onload = () => {
         window.opener.postMessage("ready", "*");
       };
     </script>
</body>
</html>