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

Unified Diff: third_party/polymer/v0_8/components-chromium/polymer/src/lib/x-style.html

Issue 1162563004: Upgrade to 1.0 and switch clients to dom-repeat where needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a layout import and remove the gzipped webanimation in reproduce.sh Created 5 years, 7 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/v0_8/components-chromium/polymer/src/lib/x-style.html
diff --git a/third_party/polymer/v0_8/components-chromium/polymer/src/lib/x-style.html b/third_party/polymer/v0_8/components-chromium/polymer/src/lib/x-style.html
deleted file mode 100644
index e89d4e7bce7cf32e99fd1c92dd6c06ed720c1533..0000000000000000000000000000000000000000
--- a/third_party/polymer/v0_8/components-chromium/polymer/src/lib/x-style.html
+++ /dev/null
@@ -1,67 +0,0 @@
-<!--
-@license
-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
---><html><head><link rel="import" href="style-util.html">
-<link rel="import" href="style-transformer.html">
-<link rel="import" href="style-defaults.html">
-
-<!--
-
-The `x-style` extension of the native `<style>` element allows defining styles
-in the main document that can take advantage of several special features of
-Polymer's styling system:
-
-* Document styles defined in an `x-style` will be shimmed to ensure they do
-not leak into local DOM when running on browsers without non-native Shadow DOM.
-* Shadow DOM-specific `/deep/` and `::shadow` combinators will be shimmed on
-browsers without non-native Shadow DOM.
-* Custom properties used by Polymer's experimental shim for cross-scope styling
-may be defined in an `x-style`.
-
-Example:
-
-```html
-<!doctype html>
-<html>
-<head>
- <script src="components/webcomponentsjs/webcomponents-lite.js"></script>
- <link rel="import" href="components/polymer/polymer.html">
-
- <style is="x-style">
-
- /* Will be prevented from affecting local DOM of Polymer elements */
- * {
- box-sizing: border-box;
- }
-
- /* Can use /deep/ and ::shadow combinators */
- body /deep/ .my-special-view::shadow #thing-inside {
- background: yellow;
- }
-
- /* Custom properties that inherit down the document tree may be defined */
- body {
- --my-toolbar-title-color: green;
- }
-
- </style>
-
-</head>
-<body>
-
- ...
-
-</body>
-</html>
-```
-
-Note, all features of `x-style` are available when defining styles as part of Polymer elements (e.g. `<style>` elements within `<dom-module>`'s used for defining Polymer elements. The `x-style` extension should only be used for defining document styles, outside of a custom element's local DOM.
-
--->
-
-</head><body><script src="x-style-extracted.js"></script></body></html>

Powered by Google App Engine
This is Rietveld 408576698