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

Side by Side Diff: lib/dom/dom.dart

Issue 10536006: Fix NodeSelector interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove NodeSelector from dart.idl. Created 8 years, 6 months 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 | lib/dom/frog/dom_frog.dart » ('j') | lib/dom/idl/dart/dart.idl » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('dom'); 1 #library('dom');
2 2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2012, 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 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library with no implementation. 8 // Auto-generated Dart DOM library with no implementation.
9 9
10 10
(...skipping 2168 matching lines...) Expand 10 before | Expand all | Expand 10 after
2179 interface DirectoryReaderSync { 2179 interface DirectoryReaderSync {
2180 2180
2181 EntryArraySync readEntries(); 2181 EntryArraySync readEntries();
2182 } 2182 }
2183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2184 // for details. All rights reserved. Use of this source code is governed by a 2184 // for details. All rights reserved. Use of this source code is governed by a
2185 // BSD-style license that can be found in the LICENSE file. 2185 // BSD-style license that can be found in the LICENSE file.
2186 2186
2187 // WARNING: Do not edit - generated code. 2187 // WARNING: Do not edit - generated code.
2188 2188
2189 interface Document extends Node, NodeSelector { 2189 interface Document extends Node {
2190 2190
2191 final String URL; 2191 final String URL;
2192 2192
2193 final HTMLCollection anchors; 2193 final HTMLCollection anchors;
2194 2194
2195 final HTMLCollection applets; 2195 final HTMLCollection applets;
2196 2196
2197 HTMLElement body; 2197 HTMLElement body;
2198 2198
2199 final String characterSet; 2199 final String characterSet;
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
2345 void webkitCancelFullScreen(); 2345 void webkitCancelFullScreen();
2346 2346
2347 void webkitExitFullscreen(); 2347 void webkitExitFullscreen();
2348 } 2348 }
2349 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2349 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2350 // for details. All rights reserved. Use of this source code is governed by a 2350 // for details. All rights reserved. Use of this source code is governed by a
2351 // BSD-style license that can be found in the LICENSE file. 2351 // BSD-style license that can be found in the LICENSE file.
2352 2352
2353 // WARNING: Do not edit - generated code. 2353 // WARNING: Do not edit - generated code.
2354 2354
2355 interface DocumentFragment extends Node, NodeSelector { 2355 interface DocumentFragment extends Node {
2356 2356
2357 Element querySelector(String selectors); 2357 Element querySelector(String selectors);
2358 2358
2359 NodeList querySelectorAll(String selectors); 2359 NodeList querySelectorAll(String selectors);
2360 } 2360 }
2361 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2361 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2362 // for details. All rights reserved. Use of this source code is governed by a 2362 // for details. All rights reserved. Use of this source code is governed by a
2363 // BSD-style license that can be found in the LICENSE file. 2363 // BSD-style license that can be found in the LICENSE file.
2364 2364
2365 // WARNING: Do not edit - generated code. 2365 // WARNING: Do not edit - generated code.
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
2409 static final int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; 2409 static final int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF;
2410 2410
2411 static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; 2411 static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE;
2412 } 2412 }
2413 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2413 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2414 // for details. All rights reserved. Use of this source code is governed by a 2414 // for details. All rights reserved. Use of this source code is governed by a
2415 // BSD-style license that can be found in the LICENSE file. 2415 // BSD-style license that can be found in the LICENSE file.
2416 2416
2417 // WARNING: Do not edit - generated code. 2417 // WARNING: Do not edit - generated code.
2418 2418
2419 interface Element extends Node, NodeSelector, ElementTraversal { 2419 interface Element extends Node, ElementTraversal {
2420 2420
2421 static final int ALLOW_KEYBOARD_INPUT = 1; 2421 static final int ALLOW_KEYBOARD_INPUT = 1;
2422 2422
2423 final int childElementCount; 2423 final int childElementCount;
2424 2424
2425 final int clientHeight; 2425 final int clientHeight;
2426 2426
2427 final int clientLeft; 2427 final int clientLeft;
2428 2428
2429 final int clientTop; 2429 final int clientTop;
(...skipping 3879 matching lines...) Expand 10 before | Expand all | Expand 10 after
6309 final int length; 6309 final int length;
6310 6310
6311 Node item(int index); 6311 Node item(int index);
6312 } 6312 }
6313 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6313 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6314 // for details. All rights reserved. Use of this source code is governed by a 6314 // for details. All rights reserved. Use of this source code is governed by a
6315 // BSD-style license that can be found in the LICENSE file. 6315 // BSD-style license that can be found in the LICENSE file.
6316 6316
6317 // WARNING: Do not edit - generated code. 6317 // WARNING: Do not edit - generated code.
6318 6318
6319 interface NodeSelector {
6320
6321 Element querySelector(String selectors);
6322
6323 NodeList querySelectorAll(String selectors);
6324 }
6325 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6326 // for details. All rights reserved. Use of this source code is governed by a
6327 // BSD-style license that can be found in the LICENSE file.
6328
6329 // WARNING: Do not edit - generated code.
6330
6331 interface Notation extends Node { 6319 interface Notation extends Node {
6332 6320
6333 final String publicId; 6321 final String publicId;
6334 6322
6335 final String systemId; 6323 final String systemId;
6336 } 6324 }
6337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6325 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6338 // for details. All rights reserved. Use of this source code is governed by a 6326 // for details. All rights reserved. Use of this source code is governed by a
6339 // BSD-style license that can be found in the LICENSE file. 6327 // BSD-style license that can be found in the LICENSE file.
6340 6328
(...skipping 6648 matching lines...) Expand 10 before | Expand all | Expand 10 after
12989 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12977 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12990 // for details. All rights reserved. Use of this source code is governed by a 12978 // for details. All rights reserved. Use of this source code is governed by a
12991 // BSD-style license that can be found in the LICENSE file. 12979 // BSD-style license that can be found in the LICENSE file.
12992 12980
12993 Window get window() => _dummy(); 12981 Window get window() => _dummy();
12994 12982
12995 // TODO(vsm): Remove when prefixes are supported. 12983 // TODO(vsm): Remove when prefixes are supported.
12996 Window get dom_window() => _dummy(); 12984 Window get dom_window() => _dummy();
12997 12985
12998 Document get document() => _dummy(); 12986 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | lib/dom/idl/dart/dart.idl » ('J')

Powered by Google App Engine
This is Rietveld 408576698