Skip to content

Commit

Permalink
[cssom-view] Inheritance of CSSOM View properties
Browse files Browse the repository at this point in the history
Properties inherit or not according to the spec.
Properties have initial values according to the spec.
https://drafts.csswg.org/cssom-view/#property-index
  • Loading branch information
ericwilligers authored and zcorpan committed Oct 22, 2018
1 parent 5a889be commit 5af37dd
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions css/cssom-view/inheritance.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Inheritance of CSSOM View properties</title>
<link rel="help" href="https://drafts.csswg.org/cssom-view/#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('scroll-behavior', 'auto', 'smooth');
</script>
</body>
</html>

0 comments on commit 5af37dd

Please sign in to comment.