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

Unified Diff: third_party/polymer/components-chromium/core-transition/core-transition.html

Issue 1215543002: Remove Polymer 0.5. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit test Created 5 years, 6 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: third_party/polymer/components-chromium/core-transition/core-transition.html
diff --git a/third_party/polymer/components-chromium/core-transition/core-transition.html b/third_party/polymer/components-chromium/core-transition/core-transition.html
deleted file mode 100644
index 573dcf1c6a6868c088c4674c4e05b413c68e64cf..0000000000000000000000000000000000000000
--- a/third_party/polymer/components-chromium/core-transition/core-transition.html
+++ /dev/null
@@ -1,71 +0,0 @@
-<!--
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
-The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
-Code distributed by Google as part of the polymer project is also
-subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
---><!--
-
-`<core-transition>` is an abstraction of an animation. It is used to implement pluggable
-transitions, for example in `<core-overlay>`. You can extend this class to create a custom
-animation, instantiate it, and import it where you need the animation.
-
-All instances of `<core-transition>` are stored in a single database with `type=transition`.
-For more about the database, please see the documentation for `<core-meta>`.
-
-Each instance of `<core-transition>` objects are shared across all the clients, so you should
-not store state information specific to the animated element in the transition. Rather, store
-it on the element.
-
-Example:
-
-my-transition.html:
-
- <polymer-element name="my-transition" extends="core-transition">
- <script>
- go: function(node) {
- node.style.transition = 'opacity 1s ease-out';
- node.style.opacity = 0;
- }
- </script>
- </polymer-element>
-
- <my-transition id="my-fade-out"></my-transition>
-
-my-transition-demo.html:
-
- <link href="components/core-meta/core-meta.html" rel="import">
- <link href="my-transition.html" rel="import">
-
- <div id="animate-me"></div>
-
- <script>
- // Get the core-transition
- var meta = document.createElement('core-meta');
- meta.type = 'transition';
- var transition = meta.byId('my-fade-out');
-
- // Run the animation
- var animated = document.getElementById('animate-me');
- transition.go(animated);
- </script>
-
-@group Polymer Core Elements
-@element core-transition
-@extends core-meta
-@status beta
-@homepage github.io
---><!--
-Fired when the animation finishes.
-
-@event core-transitionend
-@param {Object} detail
-@param {Object} detail.node The animated node
---><html><head><link rel="import" href="../core-meta/core-meta.html">
-
-</head><body><polymer-element name="core-transition" extends="core-meta" assetpath="">
-
-
-</polymer-element>
-<script charset="utf-8" src="core-transition-extracted.js"></script></body></html>

Powered by Google App Engine
This is Rietveld 408576698