From 6c5afe5810b7fa77f8e6a1e2250fbfdb628c716d Mon Sep 17 00:00:00 2001 From: Daniel Freedman Date: Tue, 16 Feb 2016 16:57:20 -0800 Subject: [PATCH] fix crlf once and for all --- .gitattributes | 1 + README.md | 370 +++++----- explainer/samples.html | 100 +-- polymer-mini.html | 144 ++-- polymer.html | 234 +++--- src/lib/annotations/demo/app-chrome.html | 120 ++-- src/lib/base.html | 316 ++++----- src/lib/bind/demo/app-chrome.html | 56 +- src/lib/bind/demo/app.html | 58 +- .../bind/demo/src/annotations-bind-demo.html | 150 ++-- src/lib/bind/demo/src/bind-demo.html | 164 ++--- src/lib/case-map.html | 76 +- src/lib/css-parse.html | 384 +++++----- src/lib/dom-api-classlist.html | 138 ++-- .../dom-api-distributed-nodes-observer.html | 192 ++--- src/lib/dom-api-event.html | 222 +++--- src/lib/dom-api-flush.html | 180 ++--- src/lib/resolve-url.html | 172 ++--- src/lib/style-cache.html | 148 ++-- src/lib/style-util.html | 324 ++++----- src/mini/debouncer.html | 172 ++--- src/mini/ready.html | 348 ++++----- test/assets/test-style-path.html | 28 +- test/compat/polymer-smoke-elements.html | 646 ++++++++--------- test/compat/polymer-smoke-polyfill.html | 64 +- test/smoke/bad-style-prop.html | 136 ++-- test/smoke/bind-smoke.html | 90 +-- test/smoke/bind-smoke2.html | 136 ++-- test/smoke/custom-notify-smoke.html | 310 ++++---- test/smoke/custom-reify.html | 124 ++-- test/smoke/dom-repeat.html | 670 +++++++++--------- test/smoke/dynamic-content.html | 128 ++-- test/smoke/dynamic-dom-bind.html | 110 +-- test/smoke/dynamic-dom-bind2.html | 146 ++-- test/smoke/elements-smoke.html | 328 ++++----- test/smoke/host-context.html | 88 +-- test/smoke/ie-annotations.html | 86 +-- test/smoke/keyframes.html | 120 ++-- test/smoke/nextSibling.html | 84 +-- test/smoke/observeContent.html | 168 ++--- test/smoke/observeNodes-repeat.html | 216 +++--- test/smoke/observeNodes.html | 164 ++--- test/smoke/observeReNodes-attr.html | 316 ++++----- test/smoke/observeReNodes.html | 238 +++---- test/smoke/offsetParent-import.html | 50 +- test/smoke/offsetParent-polymer-import.html | 72 +- test/smoke/offsetParent.html | 38 +- test/smoke/polymer-micro-smoke.html | 130 ++-- test/smoke/polymer-mini-smoke.html | 292 ++++---- test/smoke/polymer-smoke.html | 422 +++++------ test/smoke/shadow-polyfill-distribute.html | 152 ++-- test/smoke/style-path-smoke.html | 28 +- test/smoke/style-sharing/index.html | 70 +- test/smoke/style-sharing/shared-styles.html | 20 +- test/smoke/style-sharing/x-foo.html | 60 +- test/unit/micro-elements.html | 214 +++--- 56 files changed, 5007 insertions(+), 5006 deletions(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..176a458f94 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto diff --git a/README.md b/README.md index 2b9d87f048..f34ac719ce 100644 --- a/README.md +++ b/README.md @@ -1,185 +1,185 @@ -# Polymer - -[![Build Status](https://travis-ci.org/Polymer/polymer.svg?branch=master)](https://travis-ci.org/Polymer/polymer) - -Polymer lets you build encapsulated, re-usable elements that work just like HTML elements, to use in building web applications. - -```html - - - - - - - - -``` - -## Getting Started - -Check out [polymer-project.org](https://www.polymer-project.org) for all of the library documentation, including getting started guides, tutorials, developer reference, and more. - -Or if you'd just like to download the library, check out our [releases page](https://github.com/polymer/polymer/releases). - -## Polymer in 1 Minute - -The Polymer library is a lightweight sugaring layer on top of the [web components](http://webcomponents.org/) API's to help in building your own web components. It adds convenient features to make it easy to build complex elements: - -**Create and register a custom element** - -```js -/** - * A not-very-useful inline element - */ -Polymer({ - is: 'my-element' -}); -``` - -```html - - -``` - -**Add markup to your element** - -```html - - - - - - -``` - -**Configure properties on your element...** - -```js -// Create an element that takes a property -Polymer({ - is: 'my-property-namecard', - properties: { - myName: { - type: String - } - }, - ready: function() { - this.textContent = 'Hi! My name is ' + this.myName; - } -}); -``` - -**...and have them set using declarative attributes** - -```html - - -``` - -> Hi! My name is Jim - -**Bind data into your element using the familiar mustache-syntax** - -```html - - - - - - -``` - -```html - - -``` - -> Hi! My name is Josh - -**Style the internals of your element, without the style leaking out** - -```html - - - - - - -``` - -```html - - -``` - -> Hi! My name is **Jesse** - -**and so much more!** - -Web components are an incredibly powerful new set of primitives baked into the web platform, and open up a whole new world of possibility when it comes to componentizing front-end code and easily creating powerful, immersive, app-like experiences on the web. - -By being based on Web Components, elements built with Polymer are: - -* Built from the platform up -* Self-contained -* Don't require an overarching framework - are interoperable across frameworks -* Re-usable - -## Contributing - -The Polymer team loves contributions from the community! Take a look at our [contributing guide](CONTRIBUTING.md) for more information on how to contribute. - -## Communicating with the Polymer team - -Beyond Github, we try to have a variety of different lines of communication available: - -* [Blog](https://blog.polymer-project.org/) -* [Twitter](https://twitter.com/polymer) -* [Google+ community](https://plus.google.com/communities/115626364525706131031) -* [Mailing list](https://groups.google.com/forum/#!forum/polymer-dev) -* [Slack channel](https://bit.ly/polymerslack) - -# License - -The Polymer library uses a BSD-like license available [here](./LICENSE.txt) +# Polymer + +[![Build Status](https://travis-ci.org/Polymer/polymer.svg?branch=master)](https://travis-ci.org/Polymer/polymer) + +Polymer lets you build encapsulated, re-usable elements that work just like HTML elements, to use in building web applications. + +```html + + + + + + + + +``` + +## Getting Started + +Check out [polymer-project.org](https://www.polymer-project.org) for all of the library documentation, including getting started guides, tutorials, developer reference, and more. + +Or if you'd just like to download the library, check out our [releases page](https://github.com/polymer/polymer/releases). + +## Polymer in 1 Minute + +The Polymer library is a lightweight sugaring layer on top of the [web components](http://webcomponents.org/) API's to help in building your own web components. It adds convenient features to make it easy to build complex elements: + +**Create and register a custom element** + +```js +/** + * A not-very-useful inline element + */ +Polymer({ + is: 'my-element' +}); +``` + +```html + + +``` + +**Add markup to your element** + +```html + + + + + + +``` + +**Configure properties on your element...** + +```js +// Create an element that takes a property +Polymer({ + is: 'my-property-namecard', + properties: { + myName: { + type: String + } + }, + ready: function() { + this.textContent = 'Hi! My name is ' + this.myName; + } +}); +``` + +**...and have them set using declarative attributes** + +```html + + +``` + +> Hi! My name is Jim + +**Bind data into your element using the familiar mustache-syntax** + +```html + + + + + + +``` + +```html + + +``` + +> Hi! My name is Josh + +**Style the internals of your element, without the style leaking out** + +```html + + + + + + +``` + +```html + + +``` + +> Hi! My name is **Jesse** + +**and so much more!** + +Web components are an incredibly powerful new set of primitives baked into the web platform, and open up a whole new world of possibility when it comes to componentizing front-end code and easily creating powerful, immersive, app-like experiences on the web. + +By being based on Web Components, elements built with Polymer are: + +* Built from the platform up +* Self-contained +* Don't require an overarching framework - are interoperable across frameworks +* Re-usable + +## Contributing + +The Polymer team loves contributions from the community! Take a look at our [contributing guide](CONTRIBUTING.md) for more information on how to contribute. + +## Communicating with the Polymer team + +Beyond Github, we try to have a variety of different lines of communication available: + +* [Blog](https://blog.polymer-project.org/) +* [Twitter](https://twitter.com/polymer) +* [Google+ community](https://plus.google.com/communities/115626364525706131031) +* [Mailing list](https://groups.google.com/forum/#!forum/polymer-dev) +* [Slack channel](https://bit.ly/polymerslack) + +# License + +The Polymer library uses a BSD-like license available [here](./LICENSE.txt) diff --git a/explainer/samples.html b/explainer/samples.html index 7a22c31082..ea225b1541 100644 --- a/explainer/samples.html +++ b/explainer/samples.html @@ -1,50 +1,50 @@ - - - - - - Explainer Samples - - - - - - - - - - - - - - - - - + + + + + + Explainer Samples + + + + + + + + + + + + + + + + + diff --git a/polymer-mini.html b/polymer-mini.html index aa9517c3f2..1c36df40c1 100644 --- a/polymer-mini.html +++ b/polymer-mini.html @@ -1,72 +1,72 @@ - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/polymer.html b/polymer.html index 910447997e..793125359c 100644 --- a/polymer.html +++ b/polymer.html @@ -1,117 +1,117 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/lib/annotations/demo/app-chrome.html b/src/lib/annotations/demo/app-chrome.html index 48030ab6da..c9d369d7e9 100644 --- a/src/lib/annotations/demo/app-chrome.html +++ b/src/lib/annotations/demo/app-chrome.html @@ -1,60 +1,60 @@ - - - - - - - Template Test - - - - - - - - - - - - - - - - - - -

-
-  
-
-  
-
-
-
+
+
+
+
+  
+
+  Template Test
+
+  
+  
+
+  
+  
+
+  
+
+  
+
+
+
+
+  
+
+  
+
+  

+
+  
+
+  
+
+
+
diff --git a/src/lib/base.html b/src/lib/base.html
index 10f6b4d491..acfc5e9a18 100644
--- a/src/lib/base.html
+++ b/src/lib/base.html
@@ -1,158 +1,158 @@
-
-
+
+
diff --git a/src/lib/bind/demo/app-chrome.html b/src/lib/bind/demo/app-chrome.html
index d5be36edb9..47a5bb8568 100644
--- a/src/lib/bind/demo/app-chrome.html
+++ b/src/lib/bind/demo/app-chrome.html
@@ -1,28 +1,28 @@
-
-
-
-
-  Bind Test
-
-  
-  
-
-  
-
-  
-  
-
-
-
-
-  

-
-  

-
-
-
+
+
+
+
+  Bind Test
+
+  
+  
+
+  
+
+  
+  
+
+
+
+
+  

+
+  

+
+
+
diff --git a/src/lib/bind/demo/app.html b/src/lib/bind/demo/app.html
index fe7d2160b6..ffc161fb54 100644
--- a/src/lib/bind/demo/app.html
+++ b/src/lib/bind/demo/app.html
@@ -1,29 +1,29 @@
-
-
-
-
-  Bind Test
-
-  
-  
-
-  
-
-  
-
-  
-  
-
-
-
-
-  

-  

-
-
-
+
+
+
+
+  Bind Test
+
+  
+  
+
+  
+
+  
+
+  
+  
+
+
+
+
+  

+  

+
+
+
diff --git a/src/lib/bind/demo/src/annotations-bind-demo.html b/src/lib/bind/demo/src/annotations-bind-demo.html
index 747ba08992..3f7d87d418 100644
--- a/src/lib/bind/demo/src/annotations-bind-demo.html
+++ b/src/lib/bind/demo/src/annotations-bind-demo.html
@@ -1,76 +1,76 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/lib/bind/demo/src/bind-demo.html b/src/lib/bind/demo/src/bind-demo.html
index dcb9e9cdb7..561a683b09 100644
--- a/src/lib/bind/demo/src/bind-demo.html
+++ b/src/lib/bind/demo/src/bind-demo.html
@@ -1,83 +1,83 @@
-
-
-
-  
-
\ No newline at end of file
diff --git a/src/lib/case-map.html b/src/lib/case-map.html
index f1daf17f93..b2d3ed4bed 100644
--- a/src/lib/case-map.html
+++ b/src/lib/case-map.html
@@ -1,38 +1,38 @@
-
-
+
+
diff --git a/src/lib/css-parse.html b/src/lib/css-parse.html
index 7dcaa1a97a..0abcd28164 100644
--- a/src/lib/css-parse.html
+++ b/src/lib/css-parse.html
@@ -1,192 +1,192 @@
-
-
+
+
diff --git a/src/lib/dom-api-classlist.html b/src/lib/dom-api-classlist.html
index a5ef7940ba..f2f889d2d8 100644
--- a/src/lib/dom-api-classlist.html
+++ b/src/lib/dom-api-classlist.html
@@ -1,70 +1,70 @@
-
-
\ No newline at end of file
diff --git a/src/lib/dom-api-distributed-nodes-observer.html b/src/lib/dom-api-distributed-nodes-observer.html
index 57d7f1f279..9cc0a4bb07 100644
--- a/src/lib/dom-api-distributed-nodes-observer.html
+++ b/src/lib/dom-api-distributed-nodes-observer.html
@@ -1,97 +1,97 @@
-
-
-
\ No newline at end of file
diff --git a/src/lib/dom-api-event.html b/src/lib/dom-api-event.html
index a85aeced16..7047907776 100644
--- a/src/lib/dom-api-event.html
+++ b/src/lib/dom-api-event.html
@@ -1,111 +1,111 @@
-
-
-
+
+
+
diff --git a/src/lib/dom-api-flush.html b/src/lib/dom-api-flush.html
index a198311f7c..89798f1cd2 100644
--- a/src/lib/dom-api-flush.html
+++ b/src/lib/dom-api-flush.html
@@ -1,91 +1,91 @@
-
-
\ No newline at end of file
diff --git a/src/lib/resolve-url.html b/src/lib/resolve-url.html
index 5ffa594f5e..6f365f5454 100644
--- a/src/lib/resolve-url.html
+++ b/src/lib/resolve-url.html
@@ -1,86 +1,86 @@
-
-
+
+
diff --git a/src/lib/style-cache.html b/src/lib/style-cache.html
index 8b2f1ff67e..268f7164ad 100644
--- a/src/lib/style-cache.html
+++ b/src/lib/style-cache.html
@@ -1,75 +1,75 @@
-
-
\ No newline at end of file
diff --git a/src/lib/style-util.html b/src/lib/style-util.html
index 1886eeedbc..4b93a6b22f 100644
--- a/src/lib/style-util.html
+++ b/src/lib/style-util.html
@@ -1,162 +1,162 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/src/mini/debouncer.html b/src/mini/debouncer.html
index 493953bcb2..44ef513692 100644
--- a/src/mini/debouncer.html
+++ b/src/mini/debouncer.html
@@ -1,86 +1,86 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/src/mini/ready.html b/src/mini/ready.html
index 13b1ebaa2f..1129afb4dc 100644
--- a/src/mini/ready.html
+++ b/src/mini/ready.html
@@ -1,174 +1,174 @@
-
-
+
+
diff --git a/test/assets/test-style-path.html b/test/assets/test-style-path.html
index a0d168e6bd..5839419f53 100644
--- a/test/assets/test-style-path.html
+++ b/test/assets/test-style-path.html
@@ -1,14 +1,14 @@
-
-
+
+
diff --git a/test/compat/polymer-smoke-elements.html b/test/compat/polymer-smoke-elements.html
index a73250d73c..adbc8058c6 100644
--- a/test/compat/polymer-smoke-elements.html
+++ b/test/compat/polymer-smoke-elements.html
@@ -1,323 +1,323 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/test/compat/polymer-smoke-polyfill.html b/test/compat/polymer-smoke-polyfill.html
index 35df199545..2ec37b57ea 100644
--- a/test/compat/polymer-smoke-polyfill.html
+++ b/test/compat/polymer-smoke-polyfill.html
@@ -1,32 +1,32 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/test/smoke/bad-style-prop.html b/test/smoke/bad-style-prop.html
index 04ae6e023f..c4a80f5481 100644
--- a/test/smoke/bad-style-prop.html
+++ b/test/smoke/bad-style-prop.html
@@ -1,68 +1,68 @@
-
-
-
-
-  annotations
-
-  
-  
-
-  
-  
-
-
-
-
-
-
-  
-  
-  
-
-
-
-
-  
-  
-  
-
-
-  
-  
-  
-
-
-
+
+
+
+
+  annotations
+
+  
+  
+
+  
+  
+
+
+
+
+
+
+  
+  
+  
+
+
+
+
+  
+  
+  
+
+
+  
+  
+  
+
+
+
diff --git a/test/smoke/bind-smoke.html b/test/smoke/bind-smoke.html
index 4f6cb84ea5..e3eadb2e91 100644
--- a/test/smoke/bind-smoke.html
+++ b/test/smoke/bind-smoke.html
@@ -1,45 +1,45 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/test/smoke/bind-smoke2.html b/test/smoke/bind-smoke2.html
index ff83d5ccbb..51ce14c0ae 100644
--- a/test/smoke/bind-smoke2.html
+++ b/test/smoke/bind-smoke2.html
@@ -1,68 +1,68 @@
-
-
-
-
-
-  
-  
-    
-  
-  
-  
-    
-  
-  
-  
-  
-
-  
-
+
+
+
+
+
+  
+  
+    
+  
+  
+  
+    
+  
+  
+  
+  
+
+  
+
diff --git a/test/smoke/custom-notify-smoke.html b/test/smoke/custom-notify-smoke.html
index 7cc4f93b9c..bbeecc6a23 100644
--- a/test/smoke/custom-notify-smoke.html
+++ b/test/smoke/custom-notify-smoke.html
@@ -1,155 +1,155 @@
-
-
-
-
-
-  
-
-  Custom Notify Smoke Test
-
-  
-  
-
-  
-
-  
-
-
-
-
-  
-    
-    
-
-  
-
-  
-
-  
-
-
-
+
+
+
+
+
+  
+
+  Custom Notify Smoke Test
+
+  
+  
+
+  
+
+  
+
+
+
+
+  
+    
+    
+
+  
+
+  
+
+  
+
+
+
diff --git a/test/smoke/custom-reify.html b/test/smoke/custom-reify.html
index 19ef7c8152..12fb5a523d 100644
--- a/test/smoke/custom-reify.html
+++ b/test/smoke/custom-reify.html
@@ -1,62 +1,62 @@
-
-
-
-
-
-
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-    
-    
-    
-  
-  
-
-
-
+
+
+
+
+
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+    
+    
+    
+  
+  
+
+
+
diff --git a/test/smoke/dom-repeat.html b/test/smoke/dom-repeat.html
index 5c54af4eaf..5464089d61 100644
--- a/test/smoke/dom-repeat.html
+++ b/test/smoke/dom-repeat.html
@@ -1,335 +1,335 @@
-
-
-
-
-  dom-repeat
-
-  
-  
-
-  
-  
-  
-  
-  
-  
-
-
-
-
-
-
-
-  
-  
-
-
-
-  
-
-
-
-  
-  
-
-
-
-
-
-
-
-
-
+
+
+
+
+  dom-repeat
+
+  
+  
+
+  
+  
+  
+  
+  
+  
+
+
+
+
+
+
+
+  
+  
+
+
+
+  
+
+
+
+  
+  
+
+
+
+
+
+
+
+
+
diff --git a/test/smoke/dynamic-content.html b/test/smoke/dynamic-content.html
index 5e2b6c6bd5..34a0658da7 100644
--- a/test/smoke/dynamic-content.html
+++ b/test/smoke/dynamic-content.html
@@ -1,64 +1,64 @@
-
-
-
-
-  dom-if
-
-  
-  
-
-  
-  
-
-
-
-
-  
-    
-    
-  
-
-  
-    
-    
-  
-  
-  
-
-
-
+
+
+
+
+  dom-if
+
+  
+  
+
+  
+  
+
+
+
+
+  
+    
+    
+  
+
+  
+    
+    
+  
+  
+  
+
+
+
diff --git a/test/smoke/dynamic-dom-bind.html b/test/smoke/dynamic-dom-bind.html
index 4ec832f98b..e52e62c9e0 100644
--- a/test/smoke/dynamic-dom-bind.html
+++ b/test/smoke/dynamic-dom-bind.html
@@ -1,55 +1,55 @@
-
-
-
-
-
-
-  
-  
-  
-    
-    
-  
-  
-  
-    
-    
-  
-  
-
-
-
+
+
+
+
+
+
+  
+  
+  
+    
+    
+  
+  
+  
+    
+    
+  
+  
+
+
+
diff --git a/test/smoke/dynamic-dom-bind2.html b/test/smoke/dynamic-dom-bind2.html
index c298f167e5..84f8bba4fe 100644
--- a/test/smoke/dynamic-dom-bind2.html
+++ b/test/smoke/dynamic-dom-bind2.html
@@ -1,73 +1,73 @@
-
-
-
-
-
-
-  
-    
-    
-      
-    
-    
-    
-      
-    
-
-    
-  
-
-
-
+
+
+
+
+
+
+  
+    
+    
+      
+    
+    
+    
+      
+    
+
+    
+  
+
+
+
diff --git a/test/smoke/elements-smoke.html b/test/smoke/elements-smoke.html
index 551037b030..671930a43a 100644
--- a/test/smoke/elements-smoke.html
+++ b/test/smoke/elements-smoke.html
@@ -1,164 +1,164 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-  

Hello World

- - - - - -
- - - - - -
- Foo -
- - Dialog - Pop -
- -
- - - -
-

Two

-
- -
- -
- - - -
- Nest -
-
-
- Close -
- -
- - - -
- Nest 2 -
-
-
- Close -
- -
- - - - -

Alpha

-

Beta

-

Gamma

-
-
- Close -
- -
- - + + + + + + + + + + + + + + + + + + + +

Hello World

+ + + + + +
+ + + + + +
+ Foo +
+ + Dialog + Pop +
+ +
+ + + +
+

Two

+
+ +
+ +
+ + + +
+ Nest +
+
+
+ Close +
+ +
+ + + +
+ Nest 2 +
+
+
+ Close +
+ +
+ + + + +

Alpha

+

Beta

+

Gamma

+
+
+ Close +
+ +
+ + diff --git a/test/smoke/host-context.html b/test/smoke/host-context.html index df661e2955..8568801fc4 100644 --- a/test/smoke/host-context.html +++ b/test/smoke/host-context.html @@ -1,44 +1,44 @@ - - - - - dom-if - - - - - - - - - - - - - - - - -
- -
-
- - - - - + + + + + dom-if + + + + + + + + + + + + + + + + +
+ +
+
+ + + + + diff --git a/test/smoke/ie-annotations.html b/test/smoke/ie-annotations.html index 001133d6fe..e9e47d0eb8 100644 --- a/test/smoke/ie-annotations.html +++ b/test/smoke/ie-annotations.html @@ -1,43 +1,43 @@ - - - - - annotations - - - - - - - - - - - - - - - - -

Bind correctly?

- - - - - - + + + + + annotations + + + + + + + + + + + + + + + + +

Bind correctly?

+ + + + + + diff --git a/test/smoke/keyframes.html b/test/smoke/keyframes.html index 83dd7536fb..60441f54c1 100644 --- a/test/smoke/keyframes.html +++ b/test/smoke/keyframes.html @@ -1,60 +1,60 @@ - - - - - - - - - - - - - -

Text should be the color blue. Background should animate from the color red to the color yellow, and then become transparent.

- red - -

Text should be the color green. Background should animate from the color blue to the color yellow, and then become transparent.

- blue - - + + + + + + + + + + + + + +

Text should be the color blue. Background should animate from the color red to the color yellow, and then become transparent.

+ red + +

Text should be the color green. Background should animate from the color blue to the color yellow, and then become transparent.

+ blue + + diff --git a/test/smoke/nextSibling.html b/test/smoke/nextSibling.html index 13c2092e70..8c92a0ec8c 100644 --- a/test/smoke/nextSibling.html +++ b/test/smoke/nextSibling.html @@ -1,42 +1,42 @@ - - - - - annotations - - - - - - - - - - - - - - - + + + + + annotations + + + + + + + + + + + + + + + diff --git a/test/smoke/observeContent.html b/test/smoke/observeContent.html index f6efae177d..2cdc3a6dcc 100644 --- a/test/smoke/observeContent.html +++ b/test/smoke/observeContent.html @@ -1,84 +1,84 @@ - - - - - observeContent - - - - - - - - - - - - - - - - - - - - - -
content A
-
content B
-
- -

- -
static A
static B
- - - - - + + + + + observeContent + + + + + + + + + + + + + + + + + + + + + +
content A
+
content B
+
+ +

+ +
static A
static B
+ + + + + diff --git a/test/smoke/observeNodes-repeat.html b/test/smoke/observeNodes-repeat.html index a578158758..a5f71378c8 100644 --- a/test/smoke/observeNodes-repeat.html +++ b/test/smoke/observeNodes-repeat.html @@ -1,108 +1,108 @@ - - - - - observeNodes-repeat - - - - - - - - - - - - - - - + + + + + observeNodes-repeat + + + + + + + + + + + + + + + diff --git a/test/smoke/observeNodes.html b/test/smoke/observeNodes.html index 957a17cc6c..28ffd21db6 100644 --- a/test/smoke/observeNodes.html +++ b/test/smoke/observeNodes.html @@ -1,82 +1,82 @@ - - - - - observeNodes - - - - - - - - - - - - - - - - - - - - - -
content A
-
content B
-
- -

- -
static A
static B
- - - - - + + + + + observeNodes + + + + + + + + + + + + + + + + + + + + + +
content A
+
content B
+
+ +

+ +
static A
static B
+ + + + + diff --git a/test/smoke/observeReNodes-attr.html b/test/smoke/observeReNodes-attr.html index d53a509725..2495ed9a58 100644 --- a/test/smoke/observeReNodes-attr.html +++ b/test/smoke/observeReNodes-attr.html @@ -1,158 +1,158 @@ - - - - - observeReNodes - - - - - - - - - - - - - - - - - - - - - -
content A
-
content B
-
- -

- - - - - + + + + + observeReNodes + + + + + + + + + + + + + + + + + + + + + +
content A
+
content B
+
+ +

+ + + + + diff --git a/test/smoke/observeReNodes.html b/test/smoke/observeReNodes.html index 119f998adf..bb7cbae94a 100644 --- a/test/smoke/observeReNodes.html +++ b/test/smoke/observeReNodes.html @@ -1,119 +1,119 @@ - - - - - observeReNodes - - - - - - - - - - - - - - - - - - - - - -
content A
-
content B
-
- -

- - - - - + + + + + observeReNodes + + + + + + + + + + + + + + + + + + + + + +
content A
+
content B
+
+ +

+ + + + + diff --git a/test/smoke/offsetParent-import.html b/test/smoke/offsetParent-import.html index 5256732976..71ba152130 100644 --- a/test/smoke/offsetParent-import.html +++ b/test/smoke/offsetParent-import.html @@ -1,26 +1,26 @@ - - \ No newline at end of file diff --git a/test/smoke/offsetParent-polymer-import.html b/test/smoke/offsetParent-polymer-import.html index 10e912cf0e..1c8645f6e6 100644 --- a/test/smoke/offsetParent-polymer-import.html +++ b/test/smoke/offsetParent-polymer-import.html @@ -1,36 +1,36 @@ - - - - - - + + + + + + diff --git a/test/smoke/offsetParent.html b/test/smoke/offsetParent.html index 70f7fe1f59..791a4c27e4 100644 --- a/test/smoke/offsetParent.html +++ b/test/smoke/offsetParent.html @@ -1,20 +1,20 @@ - - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/test/smoke/polymer-micro-smoke.html b/test/smoke/polymer-micro-smoke.html index 2aa15f5171..3516fe3ddc 100644 --- a/test/smoke/polymer-micro-smoke.html +++ b/test/smoke/polymer-micro-smoke.html @@ -1,66 +1,66 @@ - - - - - - - - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/test/smoke/polymer-mini-smoke.html b/test/smoke/polymer-mini-smoke.html index 76b79800d0..ee5e9d0e0b 100644 --- a/test/smoke/polymer-mini-smoke.html +++ b/test/smoke/polymer-mini-smoke.html @@ -1,147 +1,147 @@ - - - - - - - - - - - - - - - - - - - - - - -content - - - - - - - - - -reprojection - - - - - - - - - -
- - - - - - + + + + + + + + + + + + + +content + + + + + + + + + +reprojection + + + + + + + + + +
+ + + + + + \ No newline at end of file diff --git a/test/smoke/polymer-smoke.html b/test/smoke/polymer-smoke.html index 89fb794b15..b8caedd91c 100644 --- a/test/smoke/polymer-smoke.html +++ b/test/smoke/polymer-smoke.html @@ -1,212 +1,212 @@ - - - - - - - - - - - - - - - - - - - - - - -content - - - - - - - - - -reprojection - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + +content + + + + + + + + + +reprojection + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/smoke/shadow-polyfill-distribute.html b/test/smoke/shadow-polyfill-distribute.html index c09640ea6b..36a7736ca3 100644 --- a/test/smoke/shadow-polyfill-distribute.html +++ b/test/smoke/shadow-polyfill-distribute.html @@ -1,76 +1,76 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/smoke/style-path-smoke.html b/test/smoke/style-path-smoke.html index 38732121e2..6acf92deea 100644 --- a/test/smoke/style-path-smoke.html +++ b/test/smoke/style-path-smoke.html @@ -1,14 +1,14 @@ - - - - - - + + + + + + diff --git a/test/smoke/style-sharing/index.html b/test/smoke/style-sharing/index.html index ef56ef0b6f..b7e8e421d8 100644 --- a/test/smoke/style-sharing/index.html +++ b/test/smoke/style-sharing/index.html @@ -1,35 +1,35 @@ - - - - - - - - - - - - - - - - - - - - -
.bar from custom-style with module shared-styles
-
.foo should not be colored
-
.zot from custom-style using var in custom-style with module shared-styles
- -
- - - - - - + + + + + + + + + + + + + + + + + + + + +
.bar from custom-style with module shared-styles
+
.foo should not be colored
+
.zot from custom-style using var in custom-style with module shared-styles
+ +
+ + + + + + diff --git a/test/smoke/style-sharing/shared-styles.html b/test/smoke/style-sharing/shared-styles.html index 437f48254b..6acb054355 100644 --- a/test/smoke/style-sharing/shared-styles.html +++ b/test/smoke/style-sharing/shared-styles.html @@ -1,11 +1,11 @@ - - + + \ No newline at end of file diff --git a/test/smoke/style-sharing/x-foo.html b/test/smoke/style-sharing/x-foo.html index 6b243508d7..231f9dc8d2 100644 --- a/test/smoke/style-sharing/x-foo.html +++ b/test/smoke/style-sharing/x-foo.html @@ -1,31 +1,31 @@ - - - - - + + + + + \ No newline at end of file diff --git a/test/unit/micro-elements.html b/test/unit/micro-elements.html index e57b006e85..a1e3f6b645 100644 --- a/test/unit/micro-elements.html +++ b/test/unit/micro-elements.html @@ -1,108 +1,108 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file