Skip to content

Commit

Permalink
Merge cc00dad 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 + cc00dad commit ad79b6e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@
<custom-style>
<style include="vaadin-component-demo-shared-styles"></style>
</custom-style>
<style>
iron-icon {
top: -2px;
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 ad79b6e

Please sign in to comment.