mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
34 lines
835 B
HTML
Executable File
34 lines
835 B
HTML
Executable File
<!DOCTYPE html>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
.target {
|
|
display: inline-block;
|
|
font-size: 60pt;
|
|
margin-right: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
.replica {
|
|
margin-right: 40px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<template id="target-template">T</template>
|
|
<script src="../testharness/testharness.js"></script>
|
|
<script src="../testharness/testharnessreport.js"></script>
|
|
<script src="resources/interpolation-test.js"></script>
|
|
<script>
|
|
assertInterpolation({
|
|
property: 'text-shadow',
|
|
from: '15px 10px 5px black',
|
|
to: '-15px -10px 25px orange'
|
|
}, [
|
|
{at: -0.3, is: '24px 16px 0px black'},
|
|
{at: 0, is: '15px 10px 5px black'},
|
|
{at: 0.3, is: '6px 4px 11px rgb(77, 50, 0)'},
|
|
{at: 0.6, is: '-3px -2px 17px rgb(153, 99, 0)'},
|
|
{at: 1, is: '-15px -10px 25px orange'},
|
|
{at: 1.5, is: '-30px -20px 35px rgb(255, 248, 0)'},
|
|
]);
|
|
</script>
|
|
</body>
|