| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 4 for details. All rights reserved. Use of this source code is governed by a | 4 for details. All rights reserved. Use of this source code is governed by a |
| 5 BSD-style license that can be found in the LICENSE file. | 5 BSD-style license that can be found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <html lang="en"> | 7 <html lang="en"> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 10 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 var xComp1Reset = queryAll('[is="x-comp1-reset"]'); | 81 var xComp1Reset = queryAll('[is="x-comp1-reset"]'); |
| 82 expect(xComp1Reset.length, 1); | 82 expect(xComp1Reset.length, 1); |
| 83 | 83 |
| 84 var xComp2 = queryAll('[is="x-comp2"]'); | 84 var xComp2 = queryAll('[is="x-comp2"]'); |
| 85 expect(xComp2.length, 1); | 85 expect(xComp2.length, 1); |
| 86 | 86 |
| 87 var xComp2Reset = queryAll('[is="x-comp2-reset"]'); | 87 var xComp2Reset = queryAll('[is="x-comp2-reset"]'); |
| 88 expect(xComp2Reset.length, 1); | 88 expect(xComp2Reset.length, 1); |
| 89 | 89 |
| 90 window.postMessage('done', '*'); | 90 window.postMessage('done', '*'); |
| 91 }); | 91 }); |
| 92 } | 92 } |
| 93 </script> | 93 </script> |
| 94 </body> | 94 </body> |
| 95 </html> | 95 </html> |
| OLD | NEW |