-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 2.0-binding-api-refactor
- Loading branch information
Showing
10 changed files
with
101 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "polymer", | ||
"version": "2.0.0-rc.3", | ||
"version": "2.0.0-rc.4", | ||
"main": [ | ||
"polymer.html" | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,6 +86,9 @@ | |
} | ||
} | ||
|
||
/** | ||
* @memberof Polymer | ||
*/ | ||
Polymer.Debouncer = Debouncer; | ||
})(); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<!doctype html> | ||
<!-- | ||
@license | ||
Copyright (c) 2017 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> | ||
<meta charset="utf-8"> | ||
<script src="../../../webcomponentsjs/webcomponents-lite.js"></script> | ||
<script src="../../../web-component-tester/browser.js"></script> | ||
<link rel="import" href="../../polymer.html"> | ||
</head> | ||
|
||
<body> | ||
<custom-style> | ||
<style is="custom-style"> | ||
html { | ||
--mixin: { | ||
border: 2px solid rgb(255, 0, 0); | ||
}; | ||
} | ||
</style> | ||
</custom-style> | ||
|
||
<custom-style> | ||
<style is="custom-style"> | ||
#target { | ||
@apply --mixin; | ||
} | ||
</style> | ||
</custom-style> | ||
|
||
<div id="target"></div> | ||
<dom-if><template></template></dom-if> | ||
<dom-repeat><template></template></dom-repeat> | ||
|
||
<script> | ||
addEventListener('WebComponentsReady', () => { | ||
class XFoo extends Polymer.Element { | ||
connectedCallback() { | ||
this.spy = sinon.spy(window.ShadyCSS, 'styleElement'); | ||
super.connectedCallback(); | ||
this.spy.restore(); | ||
} | ||
} | ||
customElements.define('x-foo', XFoo); | ||
}) | ||
</script> | ||
|
||
<script> | ||
suite('styling-only-template', function () { | ||
|
||
function assertComputed(element, value, pseudo) { | ||
var computed = getComputedStyle(element, pseudo); | ||
assert.equal(computed['border-top-width'], value, 'computed style incorrect'); | ||
} | ||
|
||
test('elements without templates do not call ShadyCSS', () => { | ||
let el = document.createElement('x-foo'); | ||
document.body.appendChild(el); | ||
assert.ok(el.spy); | ||
assert.isTrue(el.spy.notCalled); | ||
}); | ||
|
||
test('dom-repeat and dom-if do not break custom-style', () => { | ||
// force custom-style flushing | ||
let target = document.querySelector('#target'); | ||
window.ShadyCSS.styleDocument(); | ||
assertComputed(target, '2px'); | ||
}); | ||
}); | ||
</script> | ||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters