summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-paint-clip-003.html
blob: 30a7335f1521ce2f9ed0d6e440373a384523a6d6 (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
28
29
30
31
32
33
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Test: 'contain: paint' with overflowing text contents, 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>
  .root {
    contain: paint;
    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>