Skip to content

Commit

Permalink
spelling: element
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Sep 7, 2017
1 parent 139edd0 commit d4e54c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -1984,7 +1984,7 @@ The following notable changes have been made since the 2.0 Preview announcement.

- Typo in Polymer.mixin API documentation [\#2001](https://github.com/Polymer/polymer/issues/2001)

- Low-level changes for `iron-list` integration (`fire` & `modelForElemennt`) [\#2003](https://github.com/Polymer/polymer/issues/2003)
- Low-level changes for `iron-list` integration (`fire` & `modelForElement`) [\#2003](https://github.com/Polymer/polymer/issues/2003)

- Normalized event difference with ShadowDOM and Shady [\#1921](https://github.com/Polymer/polymer/issues/1921)

Expand Down
8 changes: 4 additions & 4 deletions test/unit/property-effects.html
Expand Up @@ -638,8 +638,8 @@
test('handle notifcation event and set property with observer when connected', function() {
var el = document.createElement('x-handle-notify-event');
document.body.appendChild(el);
assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying elmeent');
assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying elmeent');
assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying element');
assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying element');
assert.isTrue(el.readySpy.calledOnce, 'ready called more than once');
assert.isTrue(el.handleNotify.calledOnce, 'listener called more than once');
assert.isTrue(el.propChanged.calledOnce, 'observer called more than once');
Expand All @@ -652,8 +652,8 @@
test('handle notifcation event and set property with observer when *not* connected and _enableProperties called', function() {
var el = document.createElement('x-handle-notify-event');
el._enableProperties();
assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying elmeent');
assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying elmeent');
assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying element');
assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying element');
assert.isTrue(el.readySpy.calledOnce, 'ready called more than once');
assert.isTrue(el.handleNotify.calledOnce, 'listener called more than once');
assert.isTrue(el.propChanged.calledOnce, 'observer called more than once');
Expand Down

0 comments on commit d4e54c7

Please sign in to comment.