https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 35750b5af6e8a37f0b3977df5b0f68407cf24f06 authored by ffxbld on 18 October 2016, 19:26:02 UTC
Added FENNEC_49_0_2_RELEASE FENNEC_49_0_2_BUILD1 tag(s) for changeset 3ba91f7c77a2. DONTBUILD CLOSED TREE a=release
Tip revision: 35750b5
details-percentage-height-children.html
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->

<html>
  <style>
  details {
    background-color: orange;
    width: 500px;
    height: 300px;
  }
  summary::-moz-list-bullet {
    /* Hide the triangle for comparing with div in reftest. */
    list-style-type: none;
  }
  summary {
    background-color: green;
    width: 50%;
    height: 40%;
  }
  div#inner {
    background-color: cyan;
    width: 50%;
    height: 60%;
  }
  </style>
  <body>
    <details open>
      <summary>Summary: 40% height</summary>
      <div id="inner">Div: 60% height</div>
    </details>
  </body>
</html>
back to top