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

Unified Diff: lib/html/doc/interface/BodyElement.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 side-by-side diff with in-line comments
Download patch
Index: lib/html/doc/interface/BodyElement.dart
diff --git a/lib/html/doc/interface/BodyElement.dart b/lib/html/doc/interface/BodyElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..9a40b3902b50a11804a96cd26ad7355feb0ca1b7
--- /dev/null
+++ b/lib/html/doc/interface/BodyElement.dart
@@ -0,0 +1,60 @@
+// 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: Do not edit - generated code.
+
+/// @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();
+}

Powered by Google App Engine
This is Rietveld 408576698