summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/cssom-view/scroll-overflow-clip-quirks-002.html
blob: 8909125649a0f8731898d203593d591f8b2da41b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- quirks -->
<title>CSSOM scrollingElement reflects the propagated scroll to viewport correctly</title>
<meta charset="utf-8">
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="help" href="https://drafts.csswg.org/css-overflow/#overflow-propagation">
<link rel="help" href="https://drafts.csswg.org/cssom-view/#dom-document-scrollingelement">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/5601">
<style>
  body {
    overflow: clip;
  }
</style>
<script>
test(function() {
  assert_equals(document.scrollingElement, document.body);
});
</script>