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

Side by Side Diff: lib/html/doc/nodoc-src/shared_FactoryProviders.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/html/doc/nodoc-src/_XSLTProcessorFactoryProvider.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 class _EventFactoryProvider {
6 factory Event(String type, [bool canBubble = true,
7 bool cancelable = true]) => null;
8 }
9
10 class _MouseEventFactoryProvider {
11 factory MouseEvent(String type, Window view, int detail,
12 int screenX, int screenY, int clientX, int clientY, int button,
13 [bool canBubble = true, bool cancelable = true, bool ctrlKey = false,
14 bool altKey = false, bool shiftKey = false, bool metaKey = false,
15 EventTarget relatedTarget = null]) => null;
16 }
17
18 class _CSSStyleDeclarationFactoryProvider {
19 factory CSSStyleDeclaration.css(String css) => null;
20 factory CSSStyleDeclaration() => null;
21 }
22
23 class _DocumentFragmentFactoryProvider {
24 /** @domName Document.createDocumentFragment */
25 factory DocumentFragment() => document.createDocumentFragment();
26 factory DocumentFragment.html(String html) => null;
27 factory DocumentFragment.xml(String xml) => null;
28 factory DocumentFragment.svg(String svg) => null;
29 }
30
31 class _SVGElementFactoryProvider {
32 factory SVGElement.tag(String tag) => null;
33 factory SVGElement.svg(String svg) => null;
34 }
35
36 class _SVGSVGElementFactoryProvider {
37 factory SVGSVGElement() => null;
38 }
OLDNEW
« no previous file with comments | « lib/html/doc/nodoc-src/_XSLTProcessorFactoryProvider.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698