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

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

Issue 66843009: Even more docs changes. (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') | tools/dom/src/CrossFrameTypes.dart » ('j') | 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 3180 matching lines...) Expand 10 before | Expand all | Expand 10 after
3191 " *", 3191 " *",
3192 " * * [WindowBase]", 3192 " * * [WindowBase]",
3193 " *", 3193 " *",
3194 " * ## Other resources", 3194 " * ## Other resources",
3195 " *", 3195 " *",
3196 " * * [DOM Window](https://developer.mozilla.org/en-US/docs/DOM/window) from MDN.", 3196 " * * [DOM Window](https://developer.mozilla.org/en-US/docs/DOM/window) from MDN.",
3197 " * * [Window](http://www.w3.org/TR/Window/) from the W3C.", 3197 " * * [Window](http://www.w3.org/TR/Window/) from the W3C.",
3198 " */" 3198 " */"
3199 ], 3199 ],
3200 "members": { 3200 "members": {
3201 "alert": [
3202 "/**",
3203 " * Displays a modal alert to the user.",
3204 " *",
3205 " * ## Other resources",
3206 " *",
3207 " * * [User prompts]",
3208 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/tim ers.html#user-prompts)",
3209 " * from WHATWG.",
3210 " */"
3211 ],
3201 "applicationCache": [ 3212 "applicationCache": [
3202 "/**", 3213 "/**",
3203 " * The application cache for this window.", 3214 " * The application cache for this window.",
3204 " *", 3215 " *",
3205 " * ## Other resources", 3216 " * ## Other resources",
3206 " *", 3217 " *",
3207 " * * [A beginner's guide to using the application cache]", 3218 " * * [A beginner's guide to using the application cache]",
3208 " * (http://www.html5rocks.com/en/tutorials/appcache/beginner) from HTML5Rocks.", 3219 " * (http://www.html5rocks.com/en/tutorials/appcache/beginner) from HTML5Rocks.",
3209 " * * [Application cache API]", 3220 " * * [Application cache API]",
3210 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/off line.html#application-cache-api)", 3221 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/off line.html#application-cache-api)",
3211 " * from WHATWG.", 3222 " * from WHATWG.",
3212 " */" 3223 " */"
3213 ], 3224 ],
3225 "confirm": [
3226 "/**",
3227 " * Displays a modal OK/Cancel prompt to the user.",
3228 " *",
3229 " * ## Other resources",
3230 " *",
3231 " * * [User prompts]",
3232 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/tim ers.html#user-prompts)",
3233 " * from WHATWG.",
3234 " */"
3235 ],
3214 "crypto": [ 3236 "crypto": [
3215 "/**", 3237 "/**",
3216 " * Entrypoint for the browser's cryptographic functions.", 3238 " * Entrypoint for the browser's cryptographic functions.",
3217 " *", 3239 " *",
3218 " * ## Other resources", 3240 " * ## Other resources",
3219 " *", 3241 " *",
3220 " * * [Web cryptography API](http://www.w3.org/TR/WebCryptoAPI/) fro m W3C.", 3242 " * * [Web cryptography API](http://www.w3.org/TR/WebCryptoAPI/) fro m W3C.",
3221 " */" 3243 " */"
3222 ], 3244 ],
3223 "CSS": [ 3245 "CSS": [
3224 "/**", 3246 "/**",
3225 " * Entrypoint for CSS-related functions.", 3247 " * Entrypoint for CSS-related functions.",
3226 " *", 3248 " *",
3227 " * ## Other resources", 3249 " * ## Other resources",
3228 " *", 3250 " *",
3229 " * * [The CSS interface](http://dev.w3.org/csswg/css-conditional/#t he-css-interface) from W3C.", 3251 " * * [The CSS interface](http://dev.w3.org/csswg/css-conditional/#t he-css-interface) from W3C.",
3230 " */" 3252 " */"
3231 ], 3253 ],
3254 "defaultStatus": [
3255 "/// *Deprecated*."
3256 ],
3257 "defaultstatus": [
3258 "/// *Deprecated*."
3259 ],
3232 "devicemotionEvent": [ 3260 "devicemotionEvent": [
3233 "/**", 3261 "/**",
3234 " * Static factory designed to expose `devicemotion` events to event ", 3262 " * Static factory designed to expose `devicemotion` events to event ",
3235 " * handlers that are not necessarily instances of [Window].", 3263 " * handlers that are not necessarily instances of [Window].",
3236 " *", 3264 " *",
3237 " * See [EventStreamProvider] for usage information.", 3265 " * See [EventStreamProvider] for usage information.",
3238 " */" 3266 " */"
3239 ], 3267 ],
3240 "deviceorientationEvent": [ 3268 "deviceorientationEvent": [
3241 "/**", 3269 "/**",
(...skipping 18 matching lines...) Expand all
3260 " */" 3288 " */"
3261 ], 3289 ],
3262 "DOMContentLoadedEvent": [ 3290 "DOMContentLoadedEvent": [
3263 "/**", 3291 "/**",
3264 " * Static factory designed to expose `contentloaded` events to even t", 3292 " * Static factory designed to expose `contentloaded` events to even t",
3265 " * handlers that are not necessarily instances of [Window].", 3293 " * handlers that are not necessarily instances of [Window].",
3266 " *", 3294 " *",
3267 " * See [EventStreamProvider] for usage information.", 3295 " * See [EventStreamProvider] for usage information.",
3268 " */" 3296 " */"
3269 ], 3297 ],
3298 "find": [
3299 "/**",
3300 " * Finds text in this window.",
3301 " *",
3302 " * ## Other resources",
3303 " *",
3304 " * * [Window.find]",
3305 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.find) f rom MDN.",
3306 " */"
3307 ],
3308 "getMatchedCSSRules": [
3309 "/**",
3310 " * Returns all CSS rules that apply to the element's pseudo-element .",
3311 " */"
3312 ],
3313 "getSelection": [
3314 "/**",
3315 " * Returns the currently selected text.",
3316 " *",
3317 " * ## Other resources",
3318 " *",
3319 " * * [Window.getSelection]",
3320 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.getSele ction)",
3321 " * from MDN.",
3322 " */"
3323 ],
3270 "hashchangeEvent": [ 3324 "hashchangeEvent": [
3271 "/**", 3325 "/**",
3272 " * Static factory designed to expose `hashchange` events to event", 3326 " * Static factory designed to expose `hashchange` events to event",
3273 " * handlers that are not necessarily instances of [Window].", 3327 " * handlers that are not necessarily instances of [Window].",
3274 " *", 3328 " *",
3275 " * See [EventStreamProvider] for usage information.", 3329 " * See [EventStreamProvider] for usage information.",
3276 " */" 3330 " */"
3277 ], 3331 ],
3278 "history": [ 3332 "history": [
3279 "/**", 3333 "/**",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
3327 "/**", 3381 "/**",
3328 " * This window's location bar, which displays the URL.", 3382 " * This window's location bar, which displays the URL.",
3329 " *", 3383 " *",
3330 " * ## Other resources", 3384 " * ## Other resources",
3331 " *", 3385 " *",
3332 " * * [Browser interface elements]", 3386 " * * [Browser interface elements]",
3333 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)", 3387 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)",
3334 " * from WHATWG.", 3388 " * from WHATWG.",
3335 " */" 3389 " */"
3336 ], 3390 ],
3391 "matchMedia": [
3392 "/**",
3393 " * Returns a list of media queries for the given query string.",
3394 " *",
3395 " * ## Other resources",
3396 " *",
3397 " * * [Testing media queries]",
3398 " * (https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Testing_ media_queries)",
3399 " * from MDN.",
3400 " * * [The MediaQueryList specification]",
3401 " * (http://www.w3.org/TR/cssom-view/#the-mediaquerylist-interface) from W3C.",
3402 " */"
3403 ],
3337 "menubar": [ 3404 "menubar": [
3338 "/**", 3405 "/**",
3339 " * This window's menu bar, which displays menu commands.", 3406 " * This window's menu bar, which displays menu commands.",
3340 " *", 3407 " *",
3341 " * ## Other resources", 3408 " * ## Other resources",
3342 " *", 3409 " *",
3343 " * * [Browser interface elements]", 3410 " * * [Browser interface elements]",
3344 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)", 3411 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)",
3345 " * from WHATWG.", 3412 " * from WHATWG.",
3346 " */" 3413 " */"
3347 ], 3414 ],
3348 "messageEvent": [ 3415 "messageEvent": [
3349 "/**", 3416 "/**",
3350 " * Static factory designed to expose `message` events to event", 3417 " * Static factory designed to expose `message` events to event",
3351 " * handlers that are not necessarily instances of [Window].", 3418 " * handlers that are not necessarily instances of [Window].",
3352 " *", 3419 " *",
3353 " * See [EventStreamProvider] for usage information.", 3420 " * See [EventStreamProvider] for usage information.",
3354 " */" 3421 " */"
3355 ], 3422 ],
3423 "moveBy": [
3424 "/**",
3425 " * Moves this window.",
3426 " *",
3427 " * x and y can be negative.",
3428 " *",
3429 " * ## Other resources",
3430 " *",
3431 " * * [Window.moveBy]",
3432 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.moveBy) from MDN.",
3433 " * * [Window.moveBy]",
3434 " * (http://dev.w3.org/csswg/cssom-view/#dom-window-moveby) from W3C .",
3435 " */"
3436 ],
3356 "name": [ 3437 "name": [
3357 "/**", 3438 "/**",
3358 " * The name of this window.", 3439 " * The name of this window.",
3359 " *", 3440 " *",
3360 " * ## Other resources", 3441 " * ## Other resources",
3361 " *", 3442 " *",
3362 " * * [Window name]", 3443 " * * [Window name]",
3363 " * (http://docs.webplatform.org/wiki/html/attributes/name_(window)) from", 3444 " * (http://docs.webplatform.org/wiki/html/attributes/name_(window)) from",
3364 " * WebPlatform.org.", 3445 " * WebPlatform.org.",
3365 " */" 3446 " */"
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
3560 ], 3641 ],
3561 "onwebkitAnimationEnd": [ 3642 "onwebkitAnimationEnd": [
3562 "/// Stream of `animationend` events handled by this [Window]." 3643 "/// Stream of `animationend` events handled by this [Window]."
3563 ], 3644 ],
3564 "onwebkitAnimationIteration": [ 3645 "onwebkitAnimationIteration": [
3565 "/// Stream of `animationiteration` events handled by this [Window]." 3646 "/// Stream of `animationiteration` events handled by this [Window]."
3566 ], 3647 ],
3567 "onwebkitAnimationStart": [ 3648 "onwebkitAnimationStart": [
3568 "/// Stream of `animationstart` events handled by this [Window]." 3649 "/// Stream of `animationstart` events handled by this [Window]."
3569 ], 3650 ],
3651 "openDatabase": [
3652 "/// *Deprecated.*"
3653 ],
3570 "outerHeight": [ 3654 "outerHeight": [
3571 "/**", 3655 "/**",
3572 " * The height of this window including all user interface elements. ", 3656 " * The height of this window including all user interface elements. ",
3573 " *", 3657 " *",
3574 " * ## Other resources", 3658 " * ## Other resources",
3575 " *", 3659 " *",
3576 " * * [outerHeight]", 3660 " * * [outerHeight]",
3577 " * (http://docs.webplatform.org/wiki/css/cssom/properties/outerHeig ht) from", 3661 " * (http://docs.webplatform.org/wiki/css/cssom/properties/outerHeig ht) from",
3578 " * WebPlatform.org.", 3662 " * WebPlatform.org.",
3579 " */" 3663 " */"
(...skipping 26 matching lines...) Expand all
3606 " */" 3690 " */"
3607 ], 3691 ],
3608 "pageXOffset": [ 3692 "pageXOffset": [
3609 "/**", 3693 "/**",
3610 " * The distance this window has been scrolled horizontally.", 3694 " * The distance this window has been scrolled horizontally.",
3611 " *", 3695 " *",
3612 " * This attribute is an alias for [scrollX].", 3696 " * This attribute is an alias for [scrollX].",
3613 " *", 3697 " *",
3614 " * ## Other resources", 3698 " * ## Other resources",
3615 " *", 3699 " *",
3700 " * * [The Screen interface specification]",
3701 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.",
3616 " * * [scrollX and pageXOffset]", 3702 " * * [scrollX and pageXOffset]",
3617 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.scrollX ) from MDN.", 3703 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.scrollX ) from MDN.",
3618 " */" 3704 " */"
3619 ], 3705 ],
3620 "pageYOffset": [ 3706 "pageYOffset": [
3621 "/**", 3707 "/**",
3622 " * The distance this window has been scrolled vertically.", 3708 " * The distance this window has been scrolled vertically.",
3623 " *", 3709 " *",
3624 " * This attribute is an alias for [scrollY].", 3710 " * This attribute is an alias for [scrollY].",
3625 " *", 3711 " *",
3626 " * ## Other resources", 3712 " * ## Other resources",
3627 " *", 3713 " *",
3714 " * * [The Screen interface specification]",
3715 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.",
3628 " * * [scrollY and pageYOffset]", 3716 " * * [scrollY and pageYOffset]",
3629 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.scrollY ) from MDN.", 3717 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.scrollY ) from MDN.",
3630 " */" 3718 " */"
3631 ], 3719 ],
3720 "performance": [
3721 "/**",
3722 " * Timing and navigation data for this window.",
3723 " *",
3724 " * ## Other resources",
3725 " *",
3726 " * * [Measuring page load speed with navigation timeing]",
3727 " * (http://www.html5rocks.com/en/tutorials/webperformance/basics/) from",
3728 " * HTML5Rocks.",
3729 " * * [Navigation timing specification]",
3730 " * (http://www.w3.org/TR/navigation-timing/) from W3C.",
3731 " */"
3732 ],
3632 "PERSISTENT": [ 3733 "PERSISTENT": [
3633 "/**", 3734 "/**",
3634 " * Indicates that file system data cannot be cleared unless given u ser", 3735 " * Indicates that file system data cannot be cleared unless given u ser",
3635 " * permission.", 3736 " * permission.",
3636 " *", 3737 " *",
3637 " * ## Other resources", 3738 " * ## Other resources",
3638 " *", 3739 " *",
3639 " * * [Exploring the FileSystem APIs]", 3740 " * * [Exploring the FileSystem APIs]",
3640 " * (http://www.html5rocks.com/en/tutorials/file/filesystem/) from H TML5Rocks.", 3741 " * (http://www.html5rocks.com/en/tutorials/file/filesystem/) from H TML5Rocks.",
3641 " * * [File API]", 3742 " * * [File API]",
3642 " * (http://www.w3.org/TR/file-system-api/#idl-def-LocalFileSystem) from W3C.", 3743 " * (http://www.w3.org/TR/file-system-api/#idl-def-LocalFileSystem) from W3C.",
3643 " */" 3744 " */"
3644 ], 3745 ],
3645 "popstateEvent": [ 3746 "popstateEvent": [
3646 "/**", 3747 "/**",
3647 " * Static factory designed to expose `popstate` events to event", 3748 " * Static factory designed to expose `popstate` events to event",
3648 " * handlers that are not necessarily instances of [Window].", 3749 " * handlers that are not necessarily instances of [Window].",
3649 " *", 3750 " *",
3650 " * See [EventStreamProvider] for usage information.", 3751 " * See [EventStreamProvider] for usage information.",
3651 " */" 3752 " */"
3652 ], 3753 ],
3754 "print": [
3755 "/**",
3756 " * Opens the print dialog for this window.",
3757 " *",
3758 " * ## Other resources",
3759 " *",
3760 " * * [Window.print]",
3761 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.print) from MDN.",
3762 " */"
3763 ],
3653 "resizeEvent": [ 3764 "resizeEvent": [
3654 "/**", 3765 "/**",
3655 " * Static factory designed to expose `resize` events to event", 3766 " * Static factory designed to expose `resize` events to event",
3656 " * handlers that are not necessarily instances of [Window].", 3767 " * handlers that are not necessarily instances of [Window].",
3657 " *", 3768 " *",
3658 " * See [EventStreamProvider] for usage information.", 3769 " * See [EventStreamProvider] for usage information.",
3659 " */" 3770 " */"
3660 ], 3771 ],
3772 "screen": [
3773 "/**",
3774 " * Information about the screen displaying this window.",
3775 " *",
3776 " * ## Other resources",
3777 " *",
3778 " * * [The Screen interface specification]",
3779 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.",
3780 " */"
3781 ],
3782 "screenLeft": [
3783 "/**",
3784 " * The distance from the left side of the screen to the left side o f this",
3785 " * window.",
3786 " *",
3787 " * ## Other resources",
3788 " *",
3789 " * * [The Screen interface specification]",
3790 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.",
3791 " */"
3792 ],
3793 "screenTop": [
3794 "/**",
3795 " * The distance from the top of the screen to the top of this windo w.",
3796 " *",
3797 " * ## Other resources",
3798 " *",
3799 " * * [The Screen interface specification]",
3800 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.",
3801 " */"
3802 ],
3803 "screenX": [
3804 "/**",
3805 " * The distance from the left side of the screen to the mouse point er.",
3806 " *",
3807 " * ## Other resources",
3808 " *",
3809 " * * [The Screen interface specification]",
3810 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.",
3811 " */"
3812 ],
3813 "screenY": [
3814 "/**",
3815 " * The distance from the top of the screen to the mouse pointer.",
3816 " *",
3817 " * ## Other resources",
3818 " *",
3819 " * * [The Screen interface specification]",
3820 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.",
3821 " */"
3822 ],
3661 "scrollbars": [ 3823 "scrollbars": [
3662 "/**", 3824 "/**",
3663 " * This window's scroll bars.", 3825 " * This window's scroll bars.",
3664 " *", 3826 " *",
3665 " * ## Other resources", 3827 " * ## Other resources",
3666 " *", 3828 " *",
3667 " * * [Browser interface elements]", 3829 " * * [Browser interface elements]",
3668 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)", 3830 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)",
3669 " * from WHATWG.", 3831 " * from WHATWG.",
3670 " */" 3832 " */"
3671 ], 3833 ],
3834 "self": [
3835 "/**",
3836 " * The current window.",
3837 " *",
3838 " * ## Other resources",
3839 " *",
3840 " * * [Window.self]",
3841 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.self) f rom MDN.",
3842 " */"
3843 ],
3672 "sessionStorage": [ 3844 "sessionStorage": [
3673 "/**", 3845 "/**",
3674 " * Storage for this window that is cleared when this session ends." , 3846 " * Storage for this window that is cleared when this session ends." ,
3675 " *", 3847 " *",
3676 " * ## Other resources", 3848 " * ## Other resources",
3677 " *", 3849 " *",
3678 " * * [DOM storage guide]", 3850 " * * [DOM storage guide]",
3679 " * (https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Stor age) from", 3851 " * (https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Stor age) from",
3680 " * MDN.", 3852 " * MDN.",
3681 " * * [The past, present & future of local storage for web applicati ons]", 3853 " * * [The past, present & future of local storage for web applicati ons]",
3682 " * (http://diveintohtml5.info/storage.html) from Dive Into HTML5.", 3854 " * (http://diveintohtml5.info/storage.html) from Dive Into HTML5.",
3683 " * * [Local storage specification]", 3855 " * * [Local storage specification]",
3684 " * (http://www.w3.org/TR/webstorage/#dom-sessionstorage) from W3C." , 3856 " * (http://www.w3.org/TR/webstorage/#dom-sessionstorage) from W3C." ,
3685 " */" 3857 " */"
3686 ], 3858 ],
3859 "speechSynthesis": [
3860 "/**",
3861 " * Access to speech synthesis in the browser.",
3862 " *",
3863 " * ## Other resources",
3864 " *",
3865 " * * [Web speech specification]",
3866 " * (https://dvcs.w3.org/hg/speech-api/raw-file/tip/speechapi.html#t ts-section)",
3867 " * from W3C.",
3868 " */"
3869 ],
3870 "status": [
3871 "/// *Deprecated*."
3872 ],
3687 "statusbar": [ 3873 "statusbar": [
3688 "/**", 3874 "/**",
3689 " * This window's status bar.", 3875 " * This window's status bar.",
3690 " *", 3876 " *",
3691 " * ## Other resources", 3877 " * ## Other resources",
3692 " *", 3878 " *",
3693 " * * [Browser interface elements]", 3879 " * * [Browser interface elements]",
3694 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)", 3880 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)",
3695 " * from WHATWG.", 3881 " * from WHATWG.",
3696 " */" 3882 " */"
3697 ], 3883 ],
3698 "storageEvent": [ 3884 "storageEvent": [
3699 "/**", 3885 "/**",
3700 " * Static factory designed to expose `storage` events to event", 3886 " * Static factory designed to expose `storage` events to event",
3701 " * handlers that are not necessarily instances of [Window].", 3887 " * handlers that are not necessarily instances of [Window].",
3702 " *", 3888 " *",
3703 " * See [EventStreamProvider] for usage information.", 3889 " * See [EventStreamProvider] for usage information.",
3704 " */" 3890 " */"
3705 ], 3891 ],
3892 "styleMedia": [
3893 "/**",
3894 " * Access to CSS media queries.",
3895 " *",
3896 " * ## Other resources",
3897 " *",
3898 " * * [StyleMedia class reference]",
3899 " * (https://developer.apple.com/library/safari/documentation/Safari DOMAdditions/Reference/StyleMedia/StyleMedia/StyleMedia.html)",
3900 " * from Safari Developer Library.",
3901 " */"
3902 ],
3706 "TEMPORARY": [ 3903 "TEMPORARY": [
3707 "/**", 3904 "/**",
3708 " * Indicates that file system data can be cleared at any time.", 3905 " * Indicates that file system data can be cleared at any time.",
3709 " *", 3906 " *",
3710 " * ## Other resources", 3907 " * ## Other resources",
3711 " *", 3908 " *",
3712 " * * [Exploring the FileSystem APIs]", 3909 " * * [Exploring the FileSystem APIs]",
3713 " * (http://www.html5rocks.com/en/tutorials/file/filesystem/) from H TML5Rocks.", 3910 " * (http://www.html5rocks.com/en/tutorials/file/filesystem/) from H TML5Rocks.",
3714 " * * [File API]", 3911 " * * [File API]",
3715 " * (http://www.w3.org/TR/file-system-api/#idl-def-LocalFileSystem) from W3C.", 3912 " * (http://www.w3.org/TR/file-system-api/#idl-def-LocalFileSystem) from W3C.",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
3750 " * See [EventStreamProvider] for usage information.", 3947 " * See [EventStreamProvider] for usage information.",
3751 " */" 3948 " */"
3752 ], 3949 ],
3753 "webkitAnimationStartEvent": [ 3950 "webkitAnimationStartEvent": [
3754 "/**", 3951 "/**",
3755 " * Static factory designed to expose `animationstart` events to eve nt", 3952 " * Static factory designed to expose `animationstart` events to eve nt",
3756 " * handlers that are not necessarily instances of [Window].", 3953 " * handlers that are not necessarily instances of [Window].",
3757 " *", 3954 " *",
3758 " * See [EventStreamProvider] for usage information.", 3955 " * See [EventStreamProvider] for usage information.",
3759 " */" 3956 " */"
3957 ],
3958 "window": [
3959 "/**",
3960 " * The current window.",
3961 " *",
3962 " * ## Other resources",
3963 " *",
3964 " * * [Window.window]",
3965 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.window) from MDN.",
3966 " */"
3760 ] 3967 ]
3761 } 3968 }
3762 }, 3969 },
3763 "Worker": { 3970 "Worker": {
3764 "members": { 3971 "members": {
3765 "errorEvent": [ 3972 "errorEvent": [
3766 "/**", 3973 "/**",
3767 " * Static factory designed to expose `error` events to event", 3974 " * Static factory designed to expose `error` events to event",
3768 " * handlers that are not necessarily instances of [Worker].", 3975 " * handlers that are not necessarily instances of [Worker].",
3769 " *", 3976 " *",
(...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after
4890 " *", 5097 " *",
4891 " * [oldVersion] should match the database's current [version] exact ly.", 5098 " * [oldVersion] should match the database's current [version] exact ly.",
4892 " *", 5099 " *",
4893 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 5100 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
4894 " */" 5101 " */"
4895 ] 5102 ]
4896 } 5103 }
4897 } 5104 }
4898 } 5105 }
4899 } 5106 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/src/CrossFrameTypes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698