blob: 855b7e6551cc7b38eea1e8683a43e21874d8f611 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<meta charset="UTF-8">
<title>toggle-root is not animatable</title>
<link rel="help" href="https://tabatkins.github.io/css-toggle/#toggle-root-property">
<meta name="assert" content="toggle-root is not animatable">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>
<body>
<script>
test_not_animatable({
property: 'toggle-root',
from: 'none',
to: 'yourtoggle 3 at 1',
underlying: 'mytoggle 2',
});
</script>
</body>
|