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

Unified Diff: lib/html/doc/interface/BodyElement.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/html/doc/interface/Blob.dartdoc ('k') | lib/html/doc/interface/ButtonElement.dartdoc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/doc/interface/BodyElement.dartdoc
diff --git a/lib/html/doc/interface/BodyElement.dartdoc b/lib/html/doc/interface/BodyElement.dartdoc
new file mode 100644
index 0000000000000000000000000000000000000000..0c5bfcfefb364c4fa0be2209191a0040862e956c
--- /dev/null
+++ b/lib/html/doc/interface/BodyElement.dartdoc
@@ -0,0 +1,62 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING:
+// This file contains documentation that is merged into the real source.
+// Do not make code changes here.
+
+/// @domName HTMLBodyElement
+interface BodyElement extends Element default _Elements {
+
+ BodyElement();
+
+ /**
+ * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
+ */
+ BodyElementEvents get on();
+
+ /** @domName HTMLBodyElement.aLink */
+ String aLink;
+
+ /** @domName HTMLBodyElement.background */
+ String background;
+
+ /** @domName HTMLBodyElement.bgColor */
+ String bgColor;
+
+ /** @domName HTMLBodyElement.link */
+ String link;
+
+ /** @domName HTMLBodyElement.vLink */
+ String vLink;
+}
+
+interface BodyElementEvents extends ElementEvents {
+
+ EventListenerList get beforeUnload();
+
+ EventListenerList get blur();
+
+ EventListenerList get error();
+
+ EventListenerList get focus();
+
+ EventListenerList get hashChange();
+
+ EventListenerList get load();
+
+ EventListenerList get message();
+
+ EventListenerList get offline();
+
+ EventListenerList get online();
+
+ EventListenerList get popState();
+
+ EventListenerList get resize();
+
+ EventListenerList get storage();
+
+ EventListenerList get unload();
+}
« no previous file with comments | « lib/html/doc/interface/Blob.dartdoc ('k') | lib/html/doc/interface/ButtonElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698