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

Side by Side Diff: client/html/release/html.dart

Issue 8390039: Missing parens (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 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 | client/html/src/DocumentFragmentWrappingImplementation.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:dom', prefix:'dom'); 3 #import('dart:dom', prefix:'dom');
4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
5 // for details. All rights reserved. Use of this source code is governed by a 5 // for details. All rights reserved. Use of this source code is governed by a
6 // BSD-style license that can be found in the LICENSE file. 6 // BSD-style license that can be found in the LICENSE file.
7 7
8 // DO NOT EDIT 8 // DO NOT EDIT
9 // Auto-generated Dart HTML library. 9 // Auto-generated Dart HTML library.
10 10
(...skipping 23886 matching lines...) Expand 10 before | Expand all | Expand 10 after
23897 bool get isContentEditable() => false; 23897 bool get isContentEditable() => false;
23898 bool get draggable() => false; 23898 bool get draggable() => false;
23899 bool get hidden() => false; 23899 bool get hidden() => false;
23900 bool get spellcheck() => false; 23900 bool get spellcheck() => false;
23901 int get tabIndex() => -1; 23901 int get tabIndex() => -1;
23902 String get id() => ""; 23902 String get id() => "";
23903 String get title() => ""; 23903 String get title() => "";
23904 String get tagName() => ""; 23904 String get tagName() => "";
23905 String get webkitdropzone() => ""; 23905 String get webkitdropzone() => "";
23906 Element get firstElementChild() => elements.first(); 23906 Element get firstElementChild() => elements.first();
23907 Element get lastElementChild() => elements.last; 23907 Element get lastElementChild() => elements.last();
23908 Element get nextElementSibling() => null; 23908 Element get nextElementSibling() => null;
23909 Element get previousElementSibling() => null; 23909 Element get previousElementSibling() => null;
23910 Element get offsetParent() => null; 23910 Element get offsetParent() => null;
23911 Element get parent() => null; 23911 Element get parent() => null;
23912 Map<String, String> get attributes() => const {}; 23912 Map<String, String> get attributes() => const {};
23913 // Issue 174: this should be a const set. 23913 // Issue 174: this should be a const set.
23914 Set<String> get classes() => new Set<String>(); 23914 Set<String> get classes() => new Set<String>();
23915 Map<String, String> get dataAttributes() => const {}; 23915 Map<String, String> get dataAttributes() => const {};
23916 CSSStyleDeclaration get style() => new EmptyStyleDeclaration(); 23916 CSSStyleDeclaration get style() => new EmptyStyleDeclaration();
23917 ClientRect getBoundingClientRect() => new EmptyClientRect(); 23917 ClientRect getBoundingClientRect() => new EmptyClientRect();
(...skipping 3464 matching lines...) Expand 10 before | Expand all | Expand 10 after
27382 startIndex = a.length - 1; 27382 startIndex = a.length - 1;
27383 } 27383 }
27384 for (int i = startIndex; i >= 0; i--) { 27384 for (int i = startIndex; i >= 0; i--) {
27385 if (a[i] == element) { 27385 if (a[i] == element) {
27386 return i; 27386 return i;
27387 } 27387 }
27388 } 27388 }
27389 return -1; 27389 return -1;
27390 } 27390 }
27391 } 27391 }
OLDNEW
« no previous file with comments | « no previous file | client/html/src/DocumentFragmentWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698