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

Side by Side Diff: tools/dom/docs/docs.json

Issue 65703003: Fill in some canvas doc blanks. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 " * This context is extended by [CanvasRenderingContext2D] and", 192 " * This context is extended by [CanvasRenderingContext2D] and",
193 " * [WebGLRenderingContext].", 193 " * [WebGLRenderingContext].",
194 " */" 194 " */"
195 ], 195 ],
196 "members": { 196 "members": {
197 "canvas": [ 197 "canvas": [
198 "/// Reference to the canvas element to which this context belongs." 198 "/// Reference to the canvas element to which this context belongs."
199 ] 199 ]
200 } 200 }
201 }, 201 },
202 "CanvasRenderingContext2D": {
203 "members": {
204 "currentPath": [
205 "/**",
206 " * The current default path of this canvas context, if there is one .",
207 " *",
208 " * ## Other resources",
209 " *",
210 " * * [Current default path]",
211 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/the -canvas-element.html#current-default-path)",
212 " * from WHATWG.",
213 " */"
214 ],
215 "imageSmoothingEnabled": [
216 "/**",
217 " * Whether images and patterns on this canvas will be smoothed when this",
218 " * canvas is scaled.",
219 " *",
220 " * ## Other resources",
221 " *",
222 " * * [Image smoothing]",
223 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/the -canvas-element.html#image-smoothing)",
224 " * from WHATWG.",
225 " */"
226 ],
227 "webkitBackingStorePixelRatio": [
228 "/**",
229 " * The ratio between this canvas' backing store dimensions and the canvas'",
230 " * logical dimensions.",
231 " *",
232 " * ## Other resources",
233 " *",
234 " * * [High DPI Canvas tutorial]",
235 " * (http://www.html5rocks.com/en/tutorials/canvas/hidpi/) from HTML 5Rocks.",
236 " */"
237 ]
238 }
239 },
202 "Clipboard": { 240 "Clipboard": {
203 "members": { 241 "members": {
204 "getData": [ 242 "getData": [
205 "/**", 243 "/**",
206 " * Gets the data for the specified type.", 244 " * Gets the data for the specified type.",
207 " *", 245 " *",
208 " * The data is only available from within a drop operation (such as an", 246 " * The data is only available from within a drop operation (such as an",
209 " * [Element.onDrop] event) and will return `null` before the event is", 247 " * [Element.onDrop] event) and will return `null` before the event is",
210 " * triggered.", 248 " * triggered.",
211 " *", 249 " *",
(...skipping 4373 matching lines...) Expand 10 before | Expand all | Expand 10 after
4585 " *", 4623 " *",
4586 " * [oldVersion] should match the database's current [version] exact ly.", 4624 " * [oldVersion] should match the database's current [version] exact ly.",
4587 " *", 4625 " *",
4588 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 4626 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
4589 " */" 4627 " */"
4590 ] 4628 ]
4591 } 4629 }
4592 } 4630 }
4593 } 4631 }
4594 } 4632 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698