mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
Automatic update from web-platform-tests[css-overscroll-behavior] Inheritance, initial (#13677) Properties inherit or not according to the spec. Properties have initial values according to the spec. https://drafts.csswg.org/css-overscroll-behavior/#property-index -- wpt-commits: 69a295238d917c2438c0029a143757a99768f275 wpt-pr: 13677
22 lines
778 B
HTML
22 lines
778 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Inheritance of CSS Overscroll Behavior properties</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-overscroll-behavior/#property-index">
|
|
<meta name="assert" content="Properties inherit or not according to the spec.">
|
|
<meta name="assert" content="Properties have initial values according to the spec.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/inheritance-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="target"></div>
|
|
</div>
|
|
<script>
|
|
assert_not_inherited('overscroll-behavior-x', 'auto', 'contain');
|
|
assert_not_inherited('overscroll-behavior-y', 'auto', 'contain');
|
|
</script>
|
|
</body>
|
|
</html>
|