Skip to content

Commit

Permalink
Fix test for SD polyfill
Browse files Browse the repository at this point in the history
SD polyfill querySelector does not count undistributed content
  • Loading branch information
dfreedm committed Oct 29, 2015
1 parent 8e6f55a commit dd8b3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/polymer-dom.js
Expand Up @@ -922,7 +922,7 @@ suite('Polymer.dom non-distributed elements', function() {
var el = document.querySelector('x-deep-contains');
var shadow = el.$.shadowed;
var light = Polymer.dom(el).querySelector('#light');
var notdistributed = Polymer.dom(el).querySelector('#notdistributed');
var notdistributed = Polymer.dom(el).children[1];
var disconnected = document.createElement('div');
var separate = document.createElement('div');
document.body.appendChild(separate);
Expand Down

0 comments on commit dd8b3e9

Please sign in to comment.