https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 600df6aa643726626d2eab36bc0f6e34bbe5ac2a authored by Julien Cristau on 02 November 2021, 14:00:50 UTC
Bug 1738908 - turn off all cron jobs on esr78 because EOL. r=mtabara a=release DONTBUILD
Tip revision: 600df6a
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 {
    /* 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