Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/cssom-view/scrollParent-quirks-mode.html - WPT Dashboard Interop Dashboard
<html>
<head>
<meta charset="utf-8">
<title>cssom-view - scrollParent in quirks mode</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
test(() => {
assert_equals(document.scrollingElement, document.body);
assert_equals(document.body.scrollParent(), null);
}, "scrollParent of body is null when body is document scrolling element");
</script>
</body>
</html>