Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(824)

Side by Side Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 11416023: Removed DivElement align property as it is obsolete. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Regenerated. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library html; 1 library html;
2 2
3 import 'dart:isolate'; 3 import 'dart:isolate';
4 import 'dart:json'; 4 import 'dart:json';
5 import 'dart:svg' as svg; 5 import 'dart:svg' as svg;
6 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7 // for details. All rights reserved. Use of this source code is governed by a 7 // for details. All rights reserved. Use of this source code is governed by a
8 // BSD-style license that can be found in the LICENSE file. 8 // BSD-style license that can be found in the LICENSE file.
9 9
10 // DO NOT EDIT 10 // DO NOT EDIT
(...skipping 6040 matching lines...) Expand 10 before | Expand all | Expand 10 after
6051 } 6051 }
6052 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6052 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6053 // for details. All rights reserved. Use of this source code is governed by a 6053 // for details. All rights reserved. Use of this source code is governed by a
6054 // BSD-style license that can be found in the LICENSE file. 6054 // BSD-style license that can be found in the LICENSE file.
6055 6055
6056 6056
6057 /// @domName HTMLDivElement 6057 /// @domName HTMLDivElement
6058 class DivElement extends Element implements Element native "*HTMLDivElement" { 6058 class DivElement extends Element implements Element native "*HTMLDivElement" {
6059 6059
6060 factory DivElement() => _Elements.createDivElement(); 6060 factory DivElement() => _Elements.createDivElement();
6061
6062 /** @domName HTMLDivElement.align */
6063 String align;
6064 } 6061 }
6065 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6062 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6066 // for details. All rights reserved. Use of this source code is governed by a 6063 // for details. All rights reserved. Use of this source code is governed by a
6067 // BSD-style license that can be found in the LICENSE file. 6064 // BSD-style license that can be found in the LICENSE file.
6068 6065
6069 6066
6070 class Document extends Node 6067 class Document extends Node
6071 native "*HTMLDocument" 6068 native "*HTMLDocument"
6072 { 6069 {
6073 6070
(...skipping 18783 matching lines...) Expand 10 before | Expand all | Expand 10 after
24857 if (length < 0) throw new ArgumentError('length'); 24854 if (length < 0) throw new ArgumentError('length');
24858 if (start < 0) throw new RangeError.value(start); 24855 if (start < 0) throw new RangeError.value(start);
24859 int end = start + length; 24856 int end = start + length;
24860 if (end > a.length) throw new RangeError.value(end); 24857 if (end > a.length) throw new RangeError.value(end);
24861 for (int i = start; i < end; i++) { 24858 for (int i = start; i < end; i++) {
24862 accumulator.add(a[i]); 24859 accumulator.add(a[i]);
24863 } 24860 }
24864 return accumulator; 24861 return accumulator;
24865 } 24862 }
24866 } 24863 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698