OLD | NEW |
1 #!/usr/bin/python2.6 | 1 #!/usr/bin/python2.6 |
2 # | 2 # |
3 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 3 # Copyright (c) 2011, 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 """Generates CSSStyleDeclaration from css property definitions defined in WebKit
.""" | 7 """Generates CSSStyleDeclaration from css property definitions defined in WebKit
.""" |
8 | 8 |
9 import tempfile, os | 9 import tempfile, os |
10 | 10 |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 interface_file.write(''.join(interface_lines)); | 210 interface_file.write(''.join(interface_lines)); |
211 interface_file.write('}\n') | 211 interface_file.write('}\n') |
212 interface_file.close() | 212 interface_file.close() |
213 | 213 |
214 class_file.write(''.join(class_lines)); | 214 class_file.write(''.join(class_lines)); |
215 class_file.write('}\n') | 215 class_file.write('}\n') |
216 class_file.close() | 216 class_file.close() |
217 | 217 |
218 if __name__ == '__main__': | 218 if __name__ == '__main__': |
219 main() | 219 main() |
OLD | NEW |