Skip to content

Commit f7dab64

Browse files
srawlinscommit-bot@chromium.org
authored andcommitted
Remove discontinued webproject.org links. Fixes #21482
Bug: #21482 Change-Id: Ie3becfa7eb9f233186629cf97bfcabe51efc8794 Reviewed-on: https://dart-review.googlesource.com/c/82790 Reviewed-by: Terry Lucas <[email protected]> Commit-Queue: Samuel Rawlins <[email protected]>
1 parent f8c89e0 commit f7dab64

File tree

9 files changed

+122
-111
lines changed

9 files changed

+122
-111
lines changed

sdk/lib/html/dart2js/html_dart2js.dart

Lines changed: 71 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -12387,8 +12387,10 @@ class Element extends Node
1238712387
*
1238812388
* See also:
1238912389
*
12390-
* * [CSS Inheritance and Cascade](http://docs.webplatform.org/wiki/tutorials/inheritance_and_cascade)
12391-
* * [Pseudo-elements](http://docs.webplatform.org/wiki/css/selectors/pseudo-elements)
12390+
* * [Cascade and Inheritance](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Cascade_and_inheritance)
12391+
* from MDN.
12392+
* * [Pseudo-elements](https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements)
12393+
* from MDN.
1239212394
*/
1239312395
CssStyleDeclaration getComputedStyle([String pseudoElement]) {
1239412396
if (pseudoElement == null) {
@@ -12570,8 +12572,10 @@ class Element extends Node
1257012572
*
1257112573
* See also:
1257212574
*
12573-
* * [scrollIntoView](http://docs.webplatform.org/wiki/dom/methods/scrollIntoView)
12574-
* * [scrollIntoViewIfNeeded](http://docs.webplatform.org/wiki/dom/methods/scrollIntoViewIfNeeded)
12575+
* * [scrollIntoView](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView)
12576+
* from MDN.
12577+
* * [scrollIntoViewIfNeeded](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded)
12578+
* from MDN.
1257512579
*/
1257612580
void scrollIntoView([ScrollAlignment alignment]) {
1257712581
var hasScrollIntoViewIfNeeded = true;
@@ -14039,9 +14043,9 @@ class Element extends Node
1403914043
*
1404014044
* ## Other resources
1404114045
*
14042-
* * [Using the fullscreen
14043-
* API](http://docs.webplatform.org/wiki/tutorials/using_the_full-screen_api)
14044-
* tutorial from WebPlatform.org.
14046+
* * [Fullscreen
14047+
* API](https://developer.mozilla.org/en-US/docs/Web/API/Fullscreen_API)
14048+
* from MDN.
1404514049
* * [Fullscreen specification](http://www.w3.org/TR/fullscreen/) from W3C.
1404614050
*/
1404714051
@SupportedBrowser(SupportedBrowser.CHROME)
@@ -16845,9 +16849,9 @@ class HtmlDocument extends Document {
1684516849
*
1684616850
* ## Other resources
1684716851
*
16848-
* * [Using the fullscreen
16849-
* API](http://docs.webplatform.org/wiki/tutorials/using_the_full-screen_api)
16850-
* from WebPlatform.org.
16852+
* * [Fullscreen
16853+
* API](https://developer.mozilla.org/en-US/docs/Web/API/Fullscreen_API)
16854+
* from MDN.
1685116855
* * [Fullscreen specification](http://www.w3.org/TR/fullscreen/) from W3C.
1685216856
*/
1685316857
@SupportedBrowser(SupportedBrowser.CHROME)
@@ -30365,8 +30369,6 @@ class Window extends EventTarget
3036530369
*
3036630370
* * [Window.open](https://developer.mozilla.org/en-US/docs/Web/API/Window.open)
3036730371
* from MDN.
30368-
* * [Window open](http://docs.webplatform.org/wiki/dom/methods/open)
30369-
* from WebPlatform.org.
3037030372
*/
3037130373
WindowBase open(String url, String name, [String options]) {
3037230374
if (options == null) {
@@ -30753,8 +30755,8 @@ class Window extends EventTarget
3075330755
*
3075430756
* ## Other resources
3075530757
*
30756-
* * [innerHeight](http://docs.webplatform.org/wiki/css/cssom/properties/innerHeight)
30757-
* from WebPlatform.org.
30758+
* * [Window.innerHeight](https://developer.mozilla.org/en-US/docs/Web/API/Window/innerHeight)
30759+
* from MDN.
3075830760
*/
3075930761
final int innerHeight;
3076030762

@@ -30763,8 +30765,8 @@ class Window extends EventTarget
3076330765
*
3076430766
* ## Other resources
3076530767
*
30766-
* * [innerWidth](http://docs.webplatform.org/wiki/css/cssom/properties/innerWidth)
30767-
* from WebPlatform.org.
30768+
* * [Window.innerWidth](https://developer.mozilla.org/en-US/docs/Web/API/Window/innerWidth)
30769+
* from MDN.
3076830770
*/
3076930771
final int innerWidth;
3077030772

@@ -30811,8 +30813,8 @@ class Window extends EventTarget
3081130813
*
3081230814
* ## Other resources
3081330815
*
30814-
* * [Window name](http://docs.webplatform.org/wiki/html/attributes/name_(window))
30815-
* from WebPlatform.org.
30816+
* * [Window.name](https://developer.mozilla.org/en-US/docs/Web/API/Window/name)
30817+
* from MDN.
3081630818
*/
3081730819
String name;
3081830820

@@ -30832,7 +30834,7 @@ class Window extends EventTarget
3083230834
*
3083330835
* ## Other resources
3083430836
*
30835-
* * [offscreenBuffering](http://docs.webplatform.org/wiki/dom/properties/offscreenBuffering)
30837+
* * [offscreenBuffering](https://webplatform.github.io/docs/dom/HTMLElement/offscreenBuffering/)
3083630838
* from WebPlatform.org.
3083730839
*/
3083830840
final bool offscreenBuffering;
@@ -30856,8 +30858,8 @@ class Window extends EventTarget
3085630858
*
3085730859
* ## Other resources
3085830860
*
30859-
* * [outerHeight](http://docs.webplatform.org/wiki/css/cssom/properties/outerHeight)
30860-
* from WebPlatform.org.
30861+
* * [Window.outerHeight](https://developer.mozilla.org/en-US/docs/Web/API/Window/outerHeight)
30862+
* from MDN.
3086130863
*/
3086230864
final int outerHeight;
3086330865

@@ -30866,8 +30868,8 @@ class Window extends EventTarget
3086630868
*
3086730869
* ## Other resources
3086830870
*
30869-
* * [outerWidth](http://docs.webplatform.org/wiki/css/cssom/properties/outerWidth)
30870-
* from WebPlatform.org.
30871+
* * [Window.outerWidth](https://developer.mozilla.org/en-US/docs/Web/API/Window/outerWidth)
30872+
* from MDN.
3087130873
*/
3087230874
final int outerWidth;
3087330875

@@ -31274,8 +31276,8 @@ class Window extends EventTarget
3127431276
*
3127531277
* ## Other resources
3127631278
*
31277-
* * [Window resizeBy](http://docs.webplatform.org/wiki/dom/methods/resizeBy)
31278-
* from WebPlatform.org.
31279+
* * [Window.resizeBy](https://developer.mozilla.org/en-US/docs/Web/API/Window/resizeBy)
31280+
* from MDN.
3127931281
*/
3128031282
void resizeBy(int x, int y) native;
3128131283

@@ -31284,8 +31286,8 @@ class Window extends EventTarget
3128431286
*
3128531287
* ## Other resources
3128631288
*
31287-
* * [Window resizeTo](http://docs.webplatform.org/wiki/dom/methods/resizeTo)
31288-
* from WebPlatform.org.
31289+
* * [Window.resizeTo](https://developer.mozilla.org/en-US/docs/Web/API/Window/resizeTo)
31290+
* from MDN.
3128931291
*/
3129031292
void resizeTo(int x, int y) native;
3129131293

@@ -31296,8 +31298,8 @@ class Window extends EventTarget
3129631298
*
3129731299
* ## Other resources
3129831300
*
31299-
* * [Window scroll](http://docs.webplatform.org/wiki/dom/methods/scroll)
31300-
* from WebPlatform.org.
31301+
* * [Window scroll](https://developer.mozilla.org/en-US/docs/Web/API/Window/scroll)
31302+
* from MDN.
3130131303
*/
3130231304
void scroll([options_OR_x, y, Map scrollOptions]) {
3130331305
if (options_OR_x == null && y == null && scrollOptions == null) {
@@ -31333,8 +31335,8 @@ class Window extends EventTarget
3133331335
*
3133431336
* ## Other resources
3133531337
*
31336-
* * [Window scroll](http://docs.webplatform.org/wiki/dom/methods/scroll)
31337-
* from WebPlatform.org.
31338+
* * [Window scroll](https://developer.mozilla.org/en-US/docs/Web/API/Window/scroll)
31339+
* from MDN.
3133831340
*/
3133931341
void _scroll_1() native;
3134031342
@JSName('scroll')
@@ -31345,8 +31347,8 @@ class Window extends EventTarget
3134531347
*
3134631348
* ## Other resources
3134731349
*
31348-
* * [Window scroll](http://docs.webplatform.org/wiki/dom/methods/scroll)
31349-
* from WebPlatform.org.
31350+
* * [Window scroll](https://developer.mozilla.org/en-US/docs/Web/API/Window/scroll)
31351+
* from MDN.
3135031352
*/
3135131353
void _scroll_2(options) native;
3135231354
@JSName('scroll')
@@ -31357,8 +31359,8 @@ class Window extends EventTarget
3135731359
*
3135831360
* ## Other resources
3135931361
*
31360-
* * [Window scroll](http://docs.webplatform.org/wiki/dom/methods/scroll)
31361-
* from WebPlatform.org.
31362+
* * [Window scroll](https://developer.mozilla.org/en-US/docs/Web/API/Window/scroll)
31363+
* from MDN.
3136231364
*/
3136331365
void _scroll_3(num x, num y) native;
3136431366
@JSName('scroll')
@@ -31369,8 +31371,8 @@ class Window extends EventTarget
3136931371
*
3137031372
* ## Other resources
3137131373
*
31372-
* * [Window scroll](http://docs.webplatform.org/wiki/dom/methods/scroll)
31373-
* from WebPlatform.org.
31374+
* * [Window scroll](https://developer.mozilla.org/en-US/docs/Web/API/Window/scroll)
31375+
* from MDN.
3137431376
*/
3137531377
void _scroll_4(int x, int y) native;
3137631378
@JSName('scroll')
@@ -31381,8 +31383,8 @@ class Window extends EventTarget
3138131383
*
3138231384
* ## Other resources
3138331385
*
31384-
* * [Window scroll](http://docs.webplatform.org/wiki/dom/methods/scroll)
31385-
* from WebPlatform.org.
31386+
* * [Window scroll](https://developer.mozilla.org/en-US/docs/Web/API/Window/scroll)
31387+
* from MDN.
3138631388
*/
3138731389
void _scroll_5(int x, int y, scrollOptions) native;
3138831390

@@ -31391,8 +31393,8 @@ class Window extends EventTarget
3139131393
*
3139231394
* ## Other resources
3139331395
*
31394-
* * [Window scrollBy](http://docs.webplatform.org/wiki/dom/methods/scrollBy)
31395-
* from WebPlatform.org.
31396+
* * [Window scrollBy](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollBy)
31397+
* from MDN.
3139631398
*/
3139731399
void scrollBy([options_OR_x, y, Map scrollOptions]) {
3139831400
if (options_OR_x == null && y == null && scrollOptions == null) {
@@ -31426,8 +31428,8 @@ class Window extends EventTarget
3142631428
*
3142731429
* ## Other resources
3142831430
*
31429-
* * [Window scrollBy](http://docs.webplatform.org/wiki/dom/methods/scrollBy)
31430-
* from WebPlatform.org.
31431+
* * [Window scrollBy](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollBy)
31432+
* from MDN.
3143131433
*/
3143231434
void _scrollBy_1() native;
3143331435
@JSName('scrollBy')
@@ -31436,8 +31438,8 @@ class Window extends EventTarget
3143631438
*
3143731439
* ## Other resources
3143831440
*
31439-
* * [Window scrollBy](http://docs.webplatform.org/wiki/dom/methods/scrollBy)
31440-
* from WebPlatform.org.
31441+
* * [Window scrollBy](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollBy)
31442+
* from MDN.
3144131443
*/
3144231444
void _scrollBy_2(options) native;
3144331445
@JSName('scrollBy')
@@ -31446,8 +31448,8 @@ class Window extends EventTarget
3144631448
*
3144731449
* ## Other resources
3144831450
*
31449-
* * [Window scrollBy](http://docs.webplatform.org/wiki/dom/methods/scrollBy)
31450-
* from WebPlatform.org.
31451+
* * [Window scrollBy](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollBy)
31452+
* from MDN.
3145131453
*/
3145231454
void _scrollBy_3(num x, num y) native;
3145331455
@JSName('scrollBy')
@@ -31456,8 +31458,8 @@ class Window extends EventTarget
3145631458
*
3145731459
* ## Other resources
3145831460
*
31459-
* * [Window scrollBy](http://docs.webplatform.org/wiki/dom/methods/scrollBy)
31460-
* from WebPlatform.org.
31461+
* * [Window scrollBy](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollBy)
31462+
* from MDN.
3146131463
*/
3146231464
void _scrollBy_4(int x, int y) native;
3146331465
@JSName('scrollBy')
@@ -31466,8 +31468,8 @@ class Window extends EventTarget
3146631468
*
3146731469
* ## Other resources
3146831470
*
31469-
* * [Window scrollBy](http://docs.webplatform.org/wiki/dom/methods/scrollBy)
31470-
* from WebPlatform.org.
31471+
* * [Window scrollBy](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollBy)
31472+
* from MDN.
3147131473
*/
3147231474
void _scrollBy_5(int x, int y, scrollOptions) native;
3147331475

@@ -31478,8 +31480,8 @@ class Window extends EventTarget
3147831480
*
3147931481
* ## Other resources
3148031482
*
31481-
* * [Window scrollTo](http://docs.webplatform.org/wiki/dom/methods/scrollTo)
31482-
* from WebPlatform.org.
31483+
* * [Window scrollTo](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollTo)
31484+
* from MDN.
3148331485
*/
3148431486
void scrollTo([options_OR_x, y, Map scrollOptions]) {
3148531487
if (options_OR_x == null && y == null && scrollOptions == null) {
@@ -31515,8 +31517,8 @@ class Window extends EventTarget
3151531517
*
3151631518
* ## Other resources
3151731519
*
31518-
* * [Window scrollTo](http://docs.webplatform.org/wiki/dom/methods/scrollTo)
31519-
* from WebPlatform.org.
31520+
* * [Window scrollTo](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollTo)
31521+
* from MDN.
3152031522
*/
3152131523
void _scrollTo_1() native;
3152231524
@JSName('scrollTo')
@@ -31527,8 +31529,8 @@ class Window extends EventTarget
3152731529
*
3152831530
* ## Other resources
3152931531
*
31530-
* * [Window scrollTo](http://docs.webplatform.org/wiki/dom/methods/scrollTo)
31531-
* from WebPlatform.org.
31532+
* * [Window scrollTo](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollTo)
31533+
* from MDN.
3153231534
*/
3153331535
void _scrollTo_2(options) native;
3153431536
@JSName('scrollTo')
@@ -31539,8 +31541,8 @@ class Window extends EventTarget
3153931541
*
3154031542
* ## Other resources
3154131543
*
31542-
* * [Window scrollTo](http://docs.webplatform.org/wiki/dom/methods/scrollTo)
31543-
* from WebPlatform.org.
31544+
* * [Window scrollTo](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollTo)
31545+
* from MDN.
3154431546
*/
3154531547
void _scrollTo_3(num x, num y) native;
3154631548
@JSName('scrollTo')
@@ -31551,8 +31553,8 @@ class Window extends EventTarget
3155131553
*
3155231554
* ## Other resources
3155331555
*
31554-
* * [Window scrollTo](http://docs.webplatform.org/wiki/dom/methods/scrollTo)
31555-
* from WebPlatform.org.
31556+
* * [Window scrollTo](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollTo)
31557+
* from MDN.
3155631558
*/
3155731559
void _scrollTo_4(int x, int y) native;
3155831560
@JSName('scrollTo')
@@ -31563,8 +31565,8 @@ class Window extends EventTarget
3156331565
*
3156431566
* ## Other resources
3156531567
*
31566-
* * [Window scrollTo](http://docs.webplatform.org/wiki/dom/methods/scrollTo)
31567-
* from WebPlatform.org.
31568+
* * [Window scrollTo](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollTo)
31569+
* from MDN.
3156831570
*/
3156931571
void _scrollTo_5(int x, int y, scrollOptions) native;
3157031572

@@ -35259,7 +35261,8 @@ class EventStreamProvider<T extends Event> {
3525935261
*
3526035262
* See also:
3526135263
*
35262-
* [addEventListener](http://docs.webplatform.org/wiki/dom/methods/addEventListener)
35264+
* * [EventTarget.addEventListener](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
35265+
* from MDN.
3526335266
*/
3526435267
Stream<T> forTarget(EventTarget e, {bool useCapture: false}) =>
3526535268
new _EventStream<T>(e, _eventType, useCapture);
@@ -35283,7 +35286,8 @@ class EventStreamProvider<T extends Event> {
3528335286
*
3528435287
* See also:
3528535288
*
35286-
* [addEventListener](http://docs.webplatform.org/wiki/dom/methods/addEventListener)
35289+
* * [EventTarget.addEventListener](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
35290+
* from MDN.
3528735291
*/
3528835292
ElementStream<T> forElement(Element e, {bool useCapture: false}) {
3528935293
return new _ElementEventStreamImpl<T>(e, _eventType, useCapture);
@@ -35301,7 +35305,8 @@ class EventStreamProvider<T extends Event> {
3530135305
*
3530235306
* See also:
3530335307
*
35304-
* [addEventListener](http://docs.webplatform.org/wiki/dom/methods/addEventListener)
35308+
* * [EventTarget.addEventListener](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
35309+
* from MDN.
3530535310
*/
3530635311
ElementStream<T> _forElementList(ElementList<Element> e,
3530735312
{bool useCapture: false}) {

sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
* check out
6868
* [Use IndexedDB](http://www.dartlang.org/docs/tutorials/indexeddb/).
6969
*
70-
* [IndexedDB reference](http://docs.webplatform.org/wiki/apis/indexeddb)
71-
* provides wiki-style docs about indexedDB
70+
* MDN provides [API
71+
* documentation](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API).
7272
*
7373
* {@category Web}
7474
*/

0 commit comments

Comments
 (0)