OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 /** Transfomer that inlines polymer-element definitions from html imports. */ | 5 /** Transfomer that inlines polymer-element definitions from html imports. */ |
6 library polymer.src.transform.import_inliner; | 6 library polymer.src.build.import_inliner; |
7 | 7 |
8 import 'dart:async'; | 8 import 'dart:async'; |
9 | 9 |
10 import 'package:barback/barback.dart'; | 10 import 'package:barback/barback.dart'; |
11 import 'package:path/path.dart' as path; | 11 import 'package:path/path.dart' as path; |
12 import 'package:html5lib/dom.dart' show Document, Node, DocumentFragment; | 12 import 'package:html5lib/dom.dart' show Document, Node, DocumentFragment; |
13 import 'package:html5lib/dom_parsing.dart' show TreeVisitor; | 13 import 'package:html5lib/dom_parsing.dart' show TreeVisitor; |
14 import 'common.dart'; | 14 import 'common.dart'; |
15 | 15 |
16 /** Recursively inlines polymer-element definitions from html imports. */ | 16 /** Recursively inlines polymer-element definitions from html imports. */ |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 'cite', // in blockquote, del, ins, q | 163 'cite', // in blockquote, del, ins, q |
164 'data', // in object | 164 'data', // in object |
165 'formaction', // in button, input | 165 'formaction', // in button, input |
166 'href', // in a, area, link, base, command | 166 'href', // in a, area, link, base, command |
167 'icon', // in command | 167 'icon', // in command |
168 'manifest', // in html | 168 'manifest', // in html |
169 'poster', // in video | 169 'poster', // in video |
170 'src', // in audio, embed, iframe, img, input, script, source, track, | 170 'src', // in audio, embed, iframe, img, input, script, source, track, |
171 // video | 171 // video |
172 ]; | 172 ]; |
OLD | NEW |