| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2014 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link rel="import" href="/tracing/base/event.html"> | 8 <link rel="import" href="/tracing/base/event.html"> |
| 9 <link rel="import" href="/tracing/base/event_target.html"> | 9 <link rel="import" href="/tracing/base/event_target.html"> |
| 10 <link rel="import" href="/tracing/base/iteration_helpers.html"> | |
| 11 <link rel="import" href="/tracing/base/unittest/test_suite.html"> | 10 <link rel="import" href="/tracing/base/unittest/test_suite.html"> |
| 11 <link rel="import" href="/tracing/base/utils.html"> |
| 12 <link rel="import" href="/tracing/base/xhr.html"> | 12 <link rel="import" href="/tracing/base/xhr.html"> |
| 13 | 13 |
| 14 <script> | 14 <script> |
| 15 'use strict'; | 15 'use strict'; |
| 16 | 16 |
| 17 tr.exportTo('tr.b.unittest', function() { | 17 tr.exportTo('tr.b.unittest', function() { |
| 18 function HTMLImportsModuleLoader() { | 18 function HTMLImportsModuleLoader() { |
| 19 } | 19 } |
| 20 HTMLImportsModuleLoader.prototype = { | 20 HTMLImportsModuleLoader.prototype = { |
| 21 loadModule(testRelpath, moduleName) { | 21 loadModule(testRelpath, moduleName) { |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 throw new Error('Test ' + fullyQualifiedName + | 239 throw new Error('Test ' + fullyQualifiedName + |
| 240 'not found amongst ' + this.testSuites.length); | 240 'not found amongst ' + this.testSuites.length); |
| 241 } | 241 } |
| 242 }; | 242 }; |
| 243 | 243 |
| 244 return { | 244 return { |
| 245 SuiteLoader, | 245 SuiteLoader, |
| 246 }; | 246 }; |
| 247 }); | 247 }); |
| 248 </script> | 248 </script> |
| OLD | NEW |