Skip to content

Commit

Permalink
Merge 005909a into 560f68e
Browse files Browse the repository at this point in the history
  • Loading branch information
Tulio Garcia committed Dec 18, 2018
2 parents 560f68e + 005909a commit 95fb2ca
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
8 changes: 8 additions & 0 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@
<custom-style>
<style include="vaadin-component-demo-shared-styles"></style>
</custom-style>
<style>
iron-icon {
top: -2px;
position: relative;
height: 29px;
width: 29px;
}
</style>
</head>

<body>
Expand Down
5 changes: 5 additions & 0 deletions test/login-overlay-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@
overlay.opened = false;
titleElements = overlayElement.querySelectorAll('[slot=title]');
expect(titleElements.length).to.be.equal(0);

overlay.opened = true;
titleElements = overlayElement.querySelectorAll('[slot=title]');
expect(titleElements.length).to.be.equal(1);
expect(titleElements[0].textContent).to.be.equal('Teleported title');
});

it('should cache queries', function() {
Expand Down

0 comments on commit 95fb2ca

Please sign in to comment.