| Index: third_party/polymer/polymer-selector/test/runner.html | 
| diff --git a/third_party/polymer/polymer-selector/test/runner.html b/third_party/polymer/polymer-selector/test/runner.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..378815ff0ca57fcd404e51f728e04149eff4b090 | 
| --- /dev/null | 
| +++ b/third_party/polymer/polymer-selector/test/runner.html | 
| @@ -0,0 +1,31 @@ | 
| +<!DOCTYPE html> | 
| +<!-- | 
| +Copyright 2013 The Polymer Authors. All rights reserved. | 
| +Use of this source code is governed by a BSD-style | 
| +license that can be found in the LICENSE file. | 
| +--> | 
| +<html> | 
| +  <head> | 
| +    <title>polymer-selector Test Runner (Mocha)</title> | 
| +    <meta charset="UTF-8"> | 
| +    <!-- --> | 
| +    <link rel="stylesheet" href="../../tools/test/mocha/mocha.css" /> | 
| +    <script src="../../tools/test/mocha/mocha.js"></script> | 
| +    <script src="../../tools/test/chai/chai.js"></script> | 
| +    <script src="../../tools/test/mocha-htmltest.js"></script> | 
| +    <!-- --> | 
| +    <script src="../../platform/platform.js"></script> | 
| +  </head> | 
| +  <body> | 
| +    <div id="mocha"></div> | 
| +    <script> | 
| +      mocha.setup({ui: 'tdd', slow: 1000, htmlbase: ''}); | 
| +    </script> | 
| +    <!-- --> | 
| +    <script src="js/polymer-selector.js"></script> | 
| +    <!-- --> | 
| +    <script> | 
| +      mocha.run(); | 
| +    </script> | 
| +  </body> | 
| +</html> | 
|  |