blob: 0bf39bcb4ddc5badaad5c7a3f940c4deb4fa5861 [file] [log] [blame]
Eric Willigers85837ef2019-08-15 09:01:541<!DOCTYPE html>
2<html>
3<head>
4<meta charset="utf-8">
5<title>Inheritance of touch-action</title>
6<link rel="help" href="https://w3c.github.io/pointerevents/#the-touch-action-css-property">
7<meta name="assert" content="touch-action does not inherit.">
8<meta name="assert" content="touch-action initial value is auto.">
9<script src="/resources/testharness.js"></script>
10<script src="/resources/testharnessreport.js"></script>
11<script src="/css/support/inheritance-testcommon.js"></script>
12</head>
13<body>
14<div id="container">
15 <div id="target"></div>
16</div>
17<script>
18assert_not_inherited('touch-action', 'auto', 'none');
19</script>
20</body>
21</html>