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

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

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/interface/Document.dartdoc ('k') | lib/html/doc/interface/DocumentType.dartdoc » ('j') | 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 /// @domName DocumentFragment
6 interface DocumentFragment extends Element default _DocumentFragmentFactoryProvi der {
7
8 DocumentFragment();
9
10 DocumentFragment.html(String html);
11
12 // TODO(nweiz): enable this when XML is ported
13 // /** WARNING: Currently this doesn't work on Dartium (issue 649). */
14 // DocumentFragment.xml(String xml);
15
16 DocumentFragment.svg(String svg);
17
18 DocumentFragment clone(bool deep);
19
20
21 /**
22 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve ntTarget.dispatchEvent
23 */
24 ElementEvents get on();
25
26 /** @domName DocumentFragment.querySelector */
27 Element $dom_querySelector(String selectors);
28
29 /** @domName DocumentFragment.querySelectorAll */
30 NodeList $dom_querySelectorAll(String selectors);
31
32 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/Document.dartdoc ('k') | lib/html/doc/interface/DocumentType.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698