| OLD | NEW |
| 1 >>> | 1 >>> |
| 2 experimentalBootstrap = document | 2 experimentalBootstrap = document |
| 3 .querySelectorAll('link') | 3 .querySelectorAll('link') |
| 4 .any((link) => link.attributes['rel'] == | 4 .any((link) => link.attributes['rel'] == |
| 5 'import' && link.attributes['href'] == POLYMER_EXPERIMENTAL_HTML); | 5 'import' && link.attributes['href'] == POLYMER_EXPERIMENTAL_HTML); |
| 6 <<< | 6 <<< |
| 7 experimentalBootstrap = document.querySelectorAll('link').any((link) => | 7 experimentalBootstrap = document.querySelectorAll('link').any((link) => |
| 8 link.attributes['rel'] == 'import' && | 8 link.attributes['rel'] == 'import' && |
| 9 link.attributes['href'] == POLYMER_EXPERIMENTAL_HTML); | 9 link.attributes['href'] == POLYMER_EXPERIMENTAL_HTML); |
| OLD | NEW |