testing/web-platform/tests/css/css-sizing/thin-element-render-ref.html
author dadaa <daisuke.akatsuka@birchill.co.jp>
Wed, 09 Jul 2025 04:53:58 +0000 (15 hours ago)
changeset 795836 a5500d271fe3a1fefb4d81d96fc4abd00d9eade7
parent 508252 ee9d4acc6348e28296d4a5c974aac6c06c546037
permissions -rw-r--r--
Bug 1957280: Limit user's mouse amount for tree component r=places-reviewers,reusable-components-reviewers,masayuki,mstriemer Differential Revision: https://phabricator.services.mozilla.com/D251224
<!DOCTYPE html>
<title>Reference: Thin elements should paint even at small size</title>
<link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org">
<html>
  <head>
    <style>
        .disappearing-border {
            height:1px;
            width:100%;
            border-top:1px solid black;
        }

        .disappearing-box {
          height:1px;
          width:100%;
          background-color: black;
        }

        body {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }
    </style>
</head>
<body>
    <div class="disappearing-border"></div>
    <div style="height:6.5px;"></div>
    <div class="disappearing-box"></div>
</body>
</html>