summaryrefslogtreecommitdiffstats
path: root/layout/reftests/xul/css-flex-1.xhtml
blob: 0622e11222d82acde3ce91e4bafe3ea4dd1dcc8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        class="reftest-wait"
        onload="tweak()">
  <style xmlns="http://www.w3.org/1999/xhtml">
    <![CDATA[
    panelview {
      border: 1px solid black;
      background: green;
      display: flex;
      height: 50px;
    }
    ]]>
  </style>
  <script>
    <![CDATA[
    function tweak() {
      var tweakMe = document.getElementById("tweakMe");
      tweakMe.style.width = "100px";
      document.documentElement.className = "";
    }
    ]]>
  </script>
  <hbox>
    <panelview id="tweakMe"></panelview>
  </hbox>
</window>