| OLD | NEW |
| 1 <import src="/sky/framework/xmlhttprequest.sky" as="XMLHttpRequest" /> | 1 <import src="../xmlhttprequest.sky" as="XMLHttpRequest" /> |
| 2 <script> | 2 <script> |
| 3 class Page { | 3 class Page { |
| 4 constructor(delegate) { | 4 constructor(delegate) { |
| 5 this.delegate_ = delegate; | 5 this.delegate_ = delegate; |
| 6 Object.preventExtensions(this); | 6 Object.preventExtensions(this); |
| 7 } | 7 } |
| 8 | 8 |
| 9 enable() { | 9 enable() { |
| 10 } | 10 } |
| 11 | 11 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 if (element.shadowRoot) { | 99 if (element.shadowRoot) { |
| 100 roots.push(element.shadowRoot); | 100 roots.push(element.shadowRoot); |
| 101 } | 101 } |
| 102 }); | 102 }); |
| 103 } | 103 } |
| 104 return map; | 104 return map; |
| 105 } | 105 } |
| 106 | 106 |
| 107 module.exports = Page; | 107 module.exports = Page; |
| 108 </script> | 108 </script> |
| OLD | NEW |