wpt / css / css-contain / contain-paint-clip-005.html

Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-contain/contain-paint-clip-005.html

<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Test: 'contain: paint' on li with overflowing text contents and
    bullet, and 'overflow-y: scroll'.</title>
  <link rel="author" title="Kyle Zentner" href="mailto:zentner.kyle@gmail.com">
  <link rel="help" href="https://drafts.csswg.org/css-contain/#containment-paint">
  <link rel="match" href="contain-paint-clip-003-ref.html">
  <style>
  ul {
    padding: 0;
    margin: 0;
  }
  .root {
    contain: paint;
    overflow-y: scroll;
    width: 100px;
    height: 100px;
    background: green;
    margin: 25px;
    padding: 25px;
  }
  ::marker { font-family: inherit; }
  </style>
</head>
<body>
  <ul>
    <li class="root">
      AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA This text should
      be clipped to the box. Lorem ipsum dolor sit amet, consectetur adipiscing
      elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam.
      Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis
      ipsum.  Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris
      massa.  Vestibulum lacinia arcu eget nulla. Class aptent taciti sociosqu
      ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur
      sodales ligula in libero.
    </li>
  </ul>
</body>
</html>

/css/css-contain/contain-paint-clip-003-ref.html

<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Reftest Reference</title>
  <link rel="author" title="Kyle Zentner" href="mailto:zentner.kyle@gmail.com">
  <style>
  .root {
    overflow-x: scroll;
    overflow-y: scroll;
    width: 100px;
    height: 100px;
    background: green;
    margin: 25px;
    padding: 25px;
  }
  </style>
</head>
<body>
  <div class="root">
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA This text should
    be clipped to the box. Lorem ipsum dolor sit amet, consectetur adipiscing
    elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed
    nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum.
    Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa.
    Vestibulum lacinia arcu eget nulla. Class aptent taciti sociosqu ad litora
    torquent per conubia nostra, per inceptos himenaeos. Curabitur sodales
    ligula in libero.
  </div>
</body>
</html>