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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 11348255: Adding docs to Element. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index 5eae3622638316ba42e5b5ef5255219a077aab1b..cac2917be09f25c46a7334f3397420cd8fc84fec 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -7336,16 +7336,44 @@ class _ElementCssClassSet extends CssClassSet {
}
}
+/**
+ * The base class of all components for an HTML document.
+ */
abstract class Element extends Node implements ElementTraversal native "*Element" {
+ /**
+ * Creates an HTML Element from a valid fragment of HTML.
Kathy Walrath 2012/11/27 21:53:42 Add a blank line after. (Do this globally.) Also,
blois 2012/12/12 01:03:44 Done.
+ * The [html] fragment must represent valid HTML with a single element root,
+ * which will be parsed and returned.
+ *
+ * Important: the contents of [html] should not contain any user-supplied
+ * data. Without strict data validation it is impossible to prevent script
+ * injection exploits.
+ *
+ * It is instead recommended that elements be constructed via [Element.tag]
+ * and text be added via [text].
+ */
factory Element.html(String html) =>
_ElementFactoryProvider.createElement_html(html);
+
+ /**
+ * Creates the HTML element specified by the tag name.
+ * This is similar to document.createElement.
+ * [tag] should be a valid HTML tag name. If [tag] is an unknown tag then
+ * this will create an [UnknownElement].
+ * var element = new Element.tag('div');
+ * For standard elements it is more preferable to use the type constructors:
+ * var element = new DivElement();
+ */
factory Element.tag(String tag) =>
_ElementFactoryProvider.createElement_tag(tag);
/**
- * @domName Element.hasAttribute, Element.getAttribute, Element.setAttribute,
- * Element.removeAttribute
+ * Provides access to all attributes on this element.
+ * This only includes attributes in the default namespace, additional
+ * attributes can be accessed via [getNamespacedAttributes].
+ * Any modifications to the map will automatically be applied to this
+ * element.
*/
Map<String, String> get attributes => new _ElementAttributeMap(this);
@@ -7375,8 +7403,8 @@ abstract class Element extends Node implements ElementTraversal native "*Element
List<Element> get elements => this.children;
/**
- * @domName childElementCount, firstElementChild, lastElementChild,
- * children, Node.nodes.add
+ * List of the direct children of this element.
+ * This collection can be used to add and remove elements from the document.
*/
List<Element> get children => new _ChildrenElementList._wrap(this);
@@ -7388,12 +7416,32 @@ abstract class Element extends Node implements ElementTraversal native "*Element
children.addAll(copy);
}
+ /**
+ * Finds the first descendent element of this element that matches the
+ * specified group of selectors.
+ * [selectors] should be a string using CSS selector syntax.
+ * var element = element.query('.className');
+ * var element = element.query('#id');
+ */
Element query(String selectors) => $dom_querySelector(selectors);
+ /**
+ * Finds all descendent elements of this element that match the specified
+ * group of selectors.
+ * [selectors] should be a string using CSS selector syntax.
+ * var items = element.query('.itemClassName');
+ */
List<Element> queryAll(String selectors) =>
new _FrozenElementList._wrap($dom_querySelectorAll(selectors));
- /** @domName className, classList */
+ /**
+ * The set of CSS classes applied to this element.
+ * This set makes it easy to add, remove or toggle the classes applied to
+ * this element.
+ * element.classes.add('selected');
+ * element.classes.toggle('isOnline');
+ * element.classes.remove('selected');
+ */
CssClassSet get classes => new _ElementCssClassSet(this);
void set classes(Collection<String> value) {
@@ -7402,6 +7450,17 @@ abstract class Element extends Node implements ElementTraversal native "*Element
classSet.addAll(value);
}
+ /**
+ * Allows access to all custom data attributes (data-*) set on this element.
+ * The keys for the map must follow these rules:
Kathy Walrath 2012/11/27 21:53:42 Add blank lines before and after this line. (Bulle
blois 2012/12/12 01:03:44 Done.
+ * * The name must not begin with `xml`.
+ * * The name cannot contain a semi-colon (`;`).
+ * * The name cannot contain any capitol letters.
+ *
+ * Any keys from markup will be converted to camel-cased keys in the map
+ * This means that a key of 'camel-cased-name' would be converted to
+ * 'camelCasedName'.
+ */
Map<String, String> get dataAttributes =>
new _DataAttributeMap(attributes);
@@ -7421,13 +7480,23 @@ abstract class Element extends Node implements ElementTraversal native "*Element
return new _NamespacedAttributeMap(this, namespace);
}
- /** @domName Window.getComputedStyle */
+ /**
+ * Gets the final set of all CSS values applied to this element, including
+ * inherited and default values.
+ * As opposed to the [style] property which contains the values specified
+ * directly on this element, computedStyle contains the values which are
+ * inherited from other sources, such as parent elements or stylesheets.
+ */
Future<CSSStyleDeclaration> get computedStyle {
// TODO(jacobr): last param should be null, see b/5045788
return getComputedStyle('');
}
- /** @domName Window.getComputedStyle */
+ /**
+ * Gets the computed style of a pseudoElement of this element.
+ * Similar to [computedStyle] but this targets pseudo-elements such as
+ * `::after, ::before, ::marker, ::line-marker`.
+ */
Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement) {
return _createMeasurementFuture(
() => window.$dom_getComputedStyle(this, pseudoElement),
@@ -7465,7 +7534,14 @@ abstract class Element extends Node implements ElementTraversal native "*Element
// TODO(vsm): Implement noSuchMethod or similar for dart2js.
- /** @domName Element.insertAdjacentText */
+ /**
+ * Creates a text node and inserts it into the DOM at the specified location.
+ * The [where] parameter indicates:
+ * * `beforeBegin` Immediately before this element.
+ * * `afterBegin` As the first child of this element.
+ * * `beforeEnd` As the last child of this element.
+ * * `afterEnd` Immediately after this element.
+ */
void insertAdjacentText(String where, String text) {
if (JS('bool', '!!#.insertAdjacentText', this)) {
_insertAdjacentText(where, text);
@@ -7477,7 +7553,15 @@ abstract class Element extends Node implements ElementTraversal native "*Element
void _insertAdjacentText(String where, String text)
native 'insertAdjacentText';
- /** @domName Element.insertAdjacentHTML */
+ /**
+ * Parses [text] as an HTML fragment and inserts it into the DOM at the
+ * specified location.
+ * The [where] parameter indicates:
Kathy Walrath 2012/11/27 21:53:42 indicates -> indicates where to insert the HTML fr
blois 2012/12/12 01:03:44 Done.
+ * * `beforeBegin` Immediately before this element.
+ * * `afterBegin` As the first child of this element.
+ * * `beforeEnd` As the last child of this element.
+ * * `afterEnd` Immediately after this element.
+ */
void insertAdjacentHtml(String where, String text) {
if (JS('bool', '!!#.insertAdjacentHtml', this)) {
_insertAdjacentHtml(where, text);
@@ -7489,7 +7573,14 @@ abstract class Element extends Node implements ElementTraversal native "*Element
void _insertAdjacentHtml(String where, String text)
native 'insertAdjacentHTML';
- /** @domName Element.insertAdjacentHTML */
+ /**
+ * Inserts [element] into the DOM at the specified location.
+ * The [where] parameter indicates:
+ * * `beforeBegin` Immediately before this element.
+ * * `afterBegin` As the first child of this element.
+ * * `beforeEnd` As the last child of this element.
+ * * `afterEnd` Immediately after this element.
+ */
Kathy Walrath 2012/11/27 21:53:42 You need a blank line before the bulleted list. Ho
blois 2012/12/12 01:03:44 Done.
Element insertAdjacentElement(String where, Element element) {
if (JS('bool', '!!#.insertAdjacentElement', this)) {
_insertAdjacentElement(where, element);
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | sdk/lib/html/templates/html/impl/impl_Element.darttemplate » ('J')

Powered by Google App Engine
This is Rietveld 408576698