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

Unified Diff: third_party/polymer/components-chromium/core-tooltip/core-tooltip.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-tooltip/core-tooltip.html
diff --git a/third_party/polymer/components-chromium/core-tooltip/core-tooltip.html b/third_party/polymer/components-chromium/core-tooltip/core-tooltip.html
deleted file mode 100644
index f876d956a4c4bbe7244afdb503aa13cc3e5e9eca..0000000000000000000000000000000000000000
--- a/third_party/polymer/components-chromium/core-tooltip/core-tooltip.html
+++ /dev/null
@@ -1,87 +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
---><!--
-The `core-tooltip` element creates a hover tooltip centered for the content
-it contains. It can be positioned on the top|bottom|left|right of content using
-the `position` attribute.
-
-To include HTML in the tooltip, include the `tip` attribute on the relevant
-content.
-
-<b>Example</b>:
-
- <core-tooltip label="I'm a tooltip">
- <span>Hover over me.</span>
- </core-tooltip>
-
-<b>Example</b> - positioning the tooltip to the right:
-
- <core-tooltip label="I'm a tooltip to the right" position="right">
- <core-icon-button icon="drawer"></core-icon-button>
- </core-tooltip>
-
-<b>Example</b> - no arrow and showing by default:
-
- <core-tooltip label="Tooltip with no arrow and always on" noarrow show>
- <img src="image.jpg">
- </core-tooltip>
-
-<b>Example</b> - disable the tooltip.
-
- <core-tooltip label="Disabled label never shows" disabled>
- ...
- </core-tooltip>
-
-<b>Example</b> - rich tooltip using the `tip` attribute:
-
- <core-tooltip>
- <div>Example of a rich information tooltip</div>
- <div tip>
- <img src="profile.jpg">Foo <b>Bar</b> - <a href="#">@baz</a>
- </div>
- </core-tooltip>
-
-By default, the `tip` attribute specifies the HTML content for a rich tooltip.
-You can customize this attribute with the `tipAttribute` attribute:
-
- <core-tooltip tipAttribute="htmltooltip">
- <div>Example of a rich information tooltip</div>
- <div htmltooltip>
- ...
- </div>
- </core-tooltip>
-
-@group Polymer Core Elements
-@element core-tooltip
-@extends core-focusable
-@mixins Polymer.CoreFocusable
-@homepage http://www.polymer-project.org/components/core-tooltip/index.html
---><html><head><link rel="import" href="../polymer/polymer.html">
-<link rel="import" href="../core-focusable/core-focusable.html">
-<link rel="import" href="../core-resizable/core-resizable.html">
-
-<!-- TODO: would be nice to inherit from label to get .htmlFor, and .control,
- but the latter is readonly. -->
-<!-- TODO: support off center arrows. -->
-<!-- TODO: detect mobile and apply the .large class, instead of manual
- control. -->
-<!-- TODO: possibly reuse core-overlay. -->
-</head><body><polymer-element name="core-tooltip" attributes="noarrow position label show tipAttribute" role="tooltip" tabindex="0" assetpath="">
-<template>
-
- <link rel="stylesheet" href="core-tooltip.css">
- <div id="tooltip" hidden?="{{!hasTooltipContent}}" class="core-tooltip {{position}} {{ {noarrow: noarrow, show: show &amp;&amp; !disabled} | tokenList}}">
- <content id="c" select="[{{tipAttribute}}]">{{label}}</content>
- </div>
-
- <content></content>
-
-</template>
-
-</polymer-element>
-<script charset="utf-8" src="core-tooltip-extracted.js"></script></body></html>

Powered by Google App Engine
This is Rietveld 408576698