Fix missing import in path-list-behavior

This change fixes a bug that was causing tests to fail in
gr-path-list-behavior in Safari. Because html imports are polyfilled
by Polymer, webcomponents.js must be included in tests -- even though no
other Polymer-specific functionality is needed.

Change-Id: Ic21aca54114aa753b3ca446a845c1a288b96894a
This commit is contained in:
Kasper Nilsson 2016-10-13 11:38:27 -07:00
parent 405a8f53d3
commit e83bbcde7a

View File

@ -13,6 +13,8 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- Polymer included for the html import polyfill. -->
<script src="../../../bower_components/webcomponentsjs/webcomponents.min.js"></script>
<script src="../../bower_components/web-component-tester/browser.js"></script> <script src="../../bower_components/web-component-tester/browser.js"></script>
<title>gr-path-list-behavior</title> <title>gr-path-list-behavior</title>