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

Side by Side Diff: lib/html/doc/html.dartdoc

Issue 10540085: Modify apidoc to prefer handwritten HTML5 docs over those in MDN or generated code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes from review comments 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 | « lib/dartdoc/dartdoc.dart ('k') | lib/html/doc/interface/AbstractWorker.dartdoc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // Fake dart:html library for documentation. 5 // Fake dart:html library for documentation.
6 6
7 /// Library level documentation goes here. 7 /// The Dart HTML5 Library.
8 #library("dart:html"); 8 #library("html");
9 9
10 #source('interface/AbstractWorker.dartdoc'); 10 #source('interface/AbstractWorker.dartdoc');
11 #source('interface/AnchorElement.dartdoc'); 11 #source('interface/AnchorElement.dartdoc');
12 #source('interface/Animation.dartdoc'); 12 #source('interface/Animation.dartdoc');
13 #source('interface/AnimationEvent.dartdoc'); 13 #source('interface/AnimationEvent.dartdoc');
14 #source('interface/AnimationList.dartdoc'); 14 #source('interface/AnimationList.dartdoc');
15 #source('interface/AppletElement.dartdoc'); 15 #source('interface/AppletElement.dartdoc');
16 #source('interface/AreaElement.dartdoc'); 16 #source('interface/AreaElement.dartdoc');
17 #source('interface/ArrayBuffer.dartdoc'); 17 #source('interface/ArrayBuffer.dartdoc');
18 #source('interface/ArrayBufferView.dartdoc'); 18 #source('interface/ArrayBufferView.dartdoc');
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 #source('nodoc-src/_WorkerFactoryProvider.dart'); 591 #source('nodoc-src/_WorkerFactoryProvider.dart');
592 #source('nodoc-src/_XMLHttpRequestFactoryProvider.dart'); 592 #source('nodoc-src/_XMLHttpRequestFactoryProvider.dart');
593 #source('nodoc-src/_XMLSerializerFactoryProvider.dart'); 593 #source('nodoc-src/_XMLSerializerFactoryProvider.dart');
594 #source('nodoc-src/_XPathEvaluatorFactoryProvider.dart'); 594 #source('nodoc-src/_XPathEvaluatorFactoryProvider.dart');
595 #source('nodoc-src/_XSLTProcessorFactoryProvider.dart'); 595 #source('nodoc-src/_XSLTProcessorFactoryProvider.dart');
596 #source('nodoc-src/shared_FactoryProviders.dart'); 596 #source('nodoc-src/shared_FactoryProviders.dart');
597 597
598 598
599 // Global definitions. 599 // Global definitions.
600 600
601 /**
602 * The top-level Window object.
603 */
601 Window get window() => null; 604 Window get window() => null;
602 605
606 /**
607 * The top-level Document object.
608 */
603 Document get document() => null; 609 Document get document() => null;
604 610
605 typedef void EventListener(Event event); 611 typedef void EventListener(Event event);
OLDNEW
« no previous file with comments | « lib/dartdoc/dartdoc.dart ('k') | lib/html/doc/interface/AbstractWorker.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698