mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
77 lines
2.6 KiB
HTML
77 lines
2.6 KiB
HTML
<!doctype html>
|
|
<!--
|
|
@license
|
|
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
|
|
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
Code distributed by Google as part of the polymer project is also
|
|
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script src="../../web-component-tester/browser.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
WCT.loadSuites([
|
|
'unit/base.html',
|
|
'unit/micro.html',
|
|
'unit/unresolved.html',
|
|
'unit/attributes.html',
|
|
'unit/dom-module.html',
|
|
'unit/dom-module-inline.html',
|
|
'unit/async.html',
|
|
'unit/behaviors.html',
|
|
'unit/template.html',
|
|
'unit/template-whitespace.html',
|
|
'unit/ready.html',
|
|
'unit/ready-shadow.html',
|
|
'unit/attached-style.html',
|
|
'unit/configure.html',
|
|
'unit/shady.html',
|
|
'unit/polymer-dom.html',
|
|
'unit/polymer-dom-shadow.html',
|
|
'unit/polymer-dom-content.html',
|
|
'unit/polymer-dom-content.html?dom=shadow',
|
|
'unit/polymer-dom-observeNodes.html',
|
|
'unit/polymer-dom-observeNodes.html?dom=shadow',
|
|
'unit/debounce.html',
|
|
'unit/bind.html',
|
|
'unit/bind.html?dom=shadow',
|
|
'unit/notify-path.html',
|
|
'unit/array-selector.html',
|
|
'unit/events.html',
|
|
'unit/gestures.html',
|
|
'unit/gestures.html?dom=shadow',
|
|
'unit/utils.html',
|
|
'unit/utils-content.html',
|
|
'unit/utils.html?dom=shadow',
|
|
'unit/utils-content.html?dom=shadow',
|
|
'unit/resolveurl.html',
|
|
'unit/css-parse.html',
|
|
'unit/styling-scoped.html',
|
|
'unit/styling-extends.html',
|
|
'unit/styling-remote.html',
|
|
'unit/styling-cross-scope-var.html',
|
|
'unit/styling-cross-scope-apply.html',
|
|
// TODO(sorvell): disable until this Chrome bug is addressed:
|
|
// https://code.google.com/p/chromium/issues/detail?id=525280
|
|
// 'unit/styling-cross-scope-var.html?dom=shadow',
|
|
// 'unit/styling-cross-scope-apply.html?dom=shadow',
|
|
'unit/styling-cross-scope-unknown-host.html',
|
|
'unit/custom-style.html',
|
|
'unit/custom-style-late.html',
|
|
'unit/dynamic-import.html',
|
|
'unit/templatizer.html',
|
|
'unit/dom-repeat.html',
|
|
'unit/dom-if.html',
|
|
'unit/dom-bind.html',
|
|
'unit/script-after-import-in-head.html',
|
|
'unit/globals.html'
|
|
]);
|
|
</script>
|
|
</body>
|
|
</html>
|