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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "dart.dom.html": { 2 "dart.dom.html": {
3 "AbstractWorker": { 3 "AbstractWorker": {
4 "members": { 4 "members": {
5 "errorEvent": [ 5 "errorEvent": [
6 "/**", 6 "/**",
7 " * Static factory designed to expose `error` events to event", 7 " * Static factory designed to expose `error` events to event",
8 " * handlers that are not necessarily instances of [AbstractWorker]. ", 8 " * handlers that are not necessarily instances of [AbstractWorker]. ",
9 " *", 9 " *",
10 " * See [EventStreamProvider] for usage information.", 10 " * See [EventStreamProvider] for usage information.",
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 "focusEvent": [ 700 "focusEvent": [
701 "/**", 701 "/**",
702 " * Static factory designed to expose `focus` events to event", 702 " * Static factory designed to expose `focus` events to event",
703 " * handlers that are not necessarily instances of [Element].", 703 " * handlers that are not necessarily instances of [Element].",
704 " *", 704 " *",
705 " * See [EventStreamProvider] for usage information.", 705 " * See [EventStreamProvider] for usage information.",
706 " */" 706 " */"
707 ], 707 ],
708 "getBoundingClientRect": [ 708 "getBoundingClientRect": [
709 "/**", 709 "/**",
710 " * The smallest bounding rectangle that encompasses this element's padding,", 710 " * Returns the smallest bounding rectangle that encompasses this el ement's",
711 " * scrollbar, and border.", 711 " * padding, scrollbar, and border.",
712 " *", 712 " *",
713 " * ## Other resources", 713 " * ## Other resources",
714 " *", 714 " *",
715 " * * [Element.getBoundingClientRect]", 715 " * * [Element.getBoundingClientRect]",
716 " * (https://developer.mozilla.org/en-US/docs/Web/API/Element.getBou ndingClientRect)", 716 " * (https://developer.mozilla.org/en-US/docs/Web/API/Element.getBou ndingClientRect)",
717 " * from MDN.", 717 " * from MDN.",
718 " * * [The getBoundingClientRect() method]", 718 " * * [The getBoundingClientRect() method]",
719 " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboun dingclientrect-methods) from W3C.", 719 " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboun dingclientrect-methods)",
720 " * from W3C.",
720 " */" 721 " */"
721 ], 722 ],
722 "getClientRects": [ 723 "getClientRects": [
723 "/**", 724 "/**",
724 " * A list of bounding rectangles for each box associated with this element.", 725 " * Returns a list of bounding rectangles for each box associated wi th this",
726 " * element.",
725 " *", 727 " *",
726 " * ## Other resources", 728 " * ## Other resources",
727 " *", 729 " *",
728 " * * [Element.getClientRects]", 730 " * * [Element.getClientRects]",
729 " * (https://developer.mozilla.org/en-US/docs/Web/API/Element.getCli entRects)", 731 " * (https://developer.mozilla.org/en-US/docs/Web/API/Element.getCli entRects)",
730 " * from MDN.", 732 " * from MDN.",
731 " * * [The getClientRects() method]", 733 " * * [The getClientRects() method]",
732 " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboun dingclientrect-methods) from W3C.", 734 " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboun dingclientrect-methods)",
735 " * from W3C.",
736 " */"
737 ],
738 "getDestinationInsertionPoints": [
739 "/**",
740 " * Returns a list of shadow DOM insertion points to which this elem ent is",
741 " * distributed.",
742 " *",
743 " * ## Other resources",
744 " *",
745 " * * [Shadow DOM specification]",
746 " * (https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/i ndex.html)",
747 " * from W3C.",
748 " */"
749 ],
750 "getElementsByClassName": [
751 "/**",
752 " * Returns a list of nodes with the given class name inside this el ement.",
753 " *",
754 " * ## Other resources",
755 " *",
756 " * * [getElementsByClassName]",
757 " * (https://developer.mozilla.org/en-US/docs/Web/API/document.getEl ementsByClassName)",
758 " * from MDN.",
759 " * * [DOM specification]",
760 " * (http://www.w3.org/TR/domcore/) from W3C.",
733 " */" 761 " */"
734 ], 762 ],
735 "hidden": [ 763 "hidden": [
736 "/**", 764 "/**",
737 " * Indicates whether the element is not relevant to the page's curr ent state.", 765 " * Indicates whether the element is not relevant to the page's curr ent state.",
738 " *", 766 " *",
739 " * ## Other resources", 767 " * ## Other resources",
740 " *", 768 " *",
741 " * * [Hidden attribute specification]", 769 " * * [Hidden attribute specification]",
742 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/edi ting.html#the-hidden-attribute)", 770 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/edi ting.html#the-hidden-attribute)",
(...skipping 3548 matching lines...) Expand 10 before | Expand all | Expand 10 after
4291 " *", 4319 " *",
4292 " * [oldVersion] should match the database's current [version] exact ly.", 4320 " * [oldVersion] should match the database's current [version] exact ly.",
4293 " *", 4321 " *",
4294 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 4322 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
4295 " */" 4323 " */"
4296 ] 4324 ]
4297 } 4325 }
4298 } 4326 }
4299 } 4327 }
4300 } 4328 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698