Update web-platform-tests to revision e710d1d6bbe007a6a9344f79e17b445cf97cc623

This commit is contained in:
WPT Sync Bot 2019-10-09 10:23:00 +00:00
parent ec408e9a57
commit 5a5336aaf0
1981 changed files with 64719 additions and 2377 deletions

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<meta charset="UTF-8">
<title>float interpolation</title>
<link rel="help" href="https://drafts.csswg.org/css-logical/#float-clear">
<meta name="assert" content="float supports animation">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>
<style>
.expected { color: green; }
</style>
<body>
<template id="target-template">float</template>
<script>
test_no_interpolation({
property: 'float',
from: 'left',
to: 'right',
});
</script>
</body>