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

Unified Diff: dart/tools/dom/docs/docs.json

Issue 60733003: Version 0.8.10.6 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 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: dart/tools/dom/docs/docs.json
===================================================================
--- dart/tools/dom/docs/docs.json (revision 29958)
+++ dart/tools/dom/docs/docs.json (working copy)
@@ -707,8 +707,8 @@
],
"getBoundingClientRect": [
"/**",
- " * The smallest bounding rectangle that encompasses this element's padding,",
- " * scrollbar, and border.",
+ " * Returns the smallest bounding rectangle that encompasses this element's",
+ " * padding, scrollbar, and border.",
" *",
" * ## Other resources",
" *",
@@ -716,12 +716,14 @@
" * (https://developer.mozilla.org/en-US/docs/Web/API/Element.getBoundingClientRect)",
" * from MDN.",
" * * [The getBoundingClientRect() method]",
- " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboundingclientrect-methods) from W3C.",
+ " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboundingclientrect-methods)",
+ " * from W3C.",
" */"
],
"getClientRects": [
"/**",
- " * A list of bounding rectangles for each box associated with this element.",
+ " * Returns a list of bounding rectangles for each box associated with this",
+ " * element.",
" *",
" * ## Other resources",
" *",
@@ -729,9 +731,35 @@
" * (https://developer.mozilla.org/en-US/docs/Web/API/Element.getClientRects)",
" * from MDN.",
" * * [The getClientRects() method]",
- " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboundingclientrect-methods) from W3C.",
+ " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboundingclientrect-methods)",
+ " * from W3C.",
" */"
],
+ "getDestinationInsertionPoints": [
+ "/**",
+ " * Returns a list of shadow DOM insertion points to which this element is",
+ " * distributed.",
+ " *",
+ " * ## Other resources",
+ " *",
+ " * * [Shadow DOM specification]",
+ " * (https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html)",
+ " * from W3C.",
+ " */"
+ ],
+ "getElementsByClassName": [
+ "/**",
+ " * Returns a list of nodes with the given class name inside this element.",
+ " *",
+ " * ## Other resources",
+ " *",
+ " * * [getElementsByClassName]",
+ " * (https://developer.mozilla.org/en-US/docs/Web/API/document.getElementsByClassName)",
+ " * from MDN.",
+ " * * [DOM specification]",
+ " * (http://www.w3.org/TR/domcore/) from W3C.",
+ " */"
+ ],
"hidden": [
"/**",
" * Indicates whether the element is not relevant to the page's current state.",

Powered by Google App Engine
This is Rietveld 408576698