Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/outline-offset-interpolation.html

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/outline-offset-interpolation.html
diff --git a/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/outline-offset-interpolation.html b/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/outline-offset-interpolation.html
new file mode 100644
index 0000000000000000000000000000000000000000..2a3f7b05b9e6d00f1f8d4bf9dc9c783f579a0a72
--- /dev/null
+++ b/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/outline-offset-interpolation.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<meta charset="UTF-8">
+<style>
+.target {
+ width: 50px;
+ height: 50px;
+ background-color: black;
+ display: inline-block;
+ outline: 4px solid orange;
+ margin: 10px 0px 0px 10px;
+}
+.replica {
+ background-color: green;
+ margin-right: 18px;
+}
+</style>
+<body>
+<script src="../testharness/testharness.js"></script>
+<script src="../testharness/testharnessreport.js"></script>
+<script src="resources/interpolation-test.js"></script>
+<script>
+assertInterpolation({
+ property: 'outline-offset',
+ from: '-5px',
+ to: '5px'
+}, [
+ {at: -0.3, is: '-8px'},
+ {at: 0, is: '-5px'},
+ {at: 0.3, is: '-2px'},
+ {at: 0.6, is: '1px'},
+ {at: 1, is: '5px'},
+ {at: 1.5, is: '10px'},
+]);
+</script>
+</body>

Powered by Google App Engine
This is Rietveld 408576698