Index: tools/dom/templates/html/impl/impl_Window.darttemplate |
diff --git a/tools/dom/templates/html/impl/impl_Window.darttemplate b/tools/dom/templates/html/impl/impl_Window.darttemplate |
index 36dfc9a7b41f29aa4c35c0917483d9e132ba0949..896e2040bcd084c7d7adfbb7e1333d10a925cf75 100644 |
--- a/tools/dom/templates/html/impl/impl_Window.darttemplate |
+++ b/tools/dom/templates/html/impl/impl_Window.darttemplate |
@@ -41,9 +41,9 @@ $if DART2JS |
* |
* ## Other resources |
* |
- * * [Loading web pages] |
- * (http://www.whatwg.org/specs/web-apps/current-work/multipage/browsers.html) |
- * from WHATWG. |
+ * * [Loading web |
+ * pages](https://html.spec.whatwg.org/multipage/browsers.html) |
+ * from WHATWG. |
*/ |
Document get document => JS('Document', '#.document', this); |
@@ -57,10 +57,10 @@ $if DART2JS |
* |
* ## Other resources |
* |
- * * [Window.open] |
- * (https://developer.mozilla.org/en-US/docs/Web/API/Window.open) from MDN. |
- * * [Window open] |
- * (http://docs.webplatform.org/wiki/dom/methods/open) from WebPlatform.org. |
+ * * [Window.open](https://developer.mozilla.org/en-US/docs/Web/API/Window.open) |
+ * from MDN. |
+ * * [Window open](http://docs.webplatform.org/wiki/dom/methods/open) |
+ * from WebPlatform.org. |
*/ |
WindowBase open(String url, String name, [String options]) { |
if (options == null) { |
@@ -122,8 +122,8 @@ $if DART2JS |
* |
* ## Other resources |
* |
- * * [Window.cancelAnimationFrame] |
- * (https://developer.mozilla.org/en-US/docs/Web/API/Window.cancelAnimationFrame) from MDN. |
+ * * [Window.cancelAnimationFrame](https://developer.mozilla.org/en-US/docs/Web/API/Window.cancelAnimationFrame) |
+ * from MDN. |
*/ |
void cancelAnimationFrame(int id) { |
_ensureRequestAnimationFrame(); |
@@ -244,10 +244,10 @@ $!MEMBERS |
* |
* ## Other resources |
* |
- * * [Window.moveTo] |
- * (https://developer.mozilla.org/en-US/docs/Web/API/Window.moveTo) from MDN. |
- * * [Window.moveTo] |
- * (http://dev.w3.org/csswg/cssom-view/#dom-window-moveto) from W3C. |
+ * * [Window.moveTo](https://developer.mozilla.org/en-US/docs/Web/API/Window.moveTo) |
+ * from MDN. |
+ * * [Window.moveTo](http://dev.w3.org/csswg/cssom-view/#dom-window-moveto) |
+ * from W3C. |
*/ |
void moveTo(Point p) { |
_moveTo(p.x, p.y); |
@@ -267,10 +267,10 @@ $if DART2JS |
* |
* ## Other resources |
* |
- * * [The Screen interface specification] |
- * (http://www.w3.org/TR/cssom-view/#screen) from W3C. |
- * * [scrollX] |
- * (https://developer.mozilla.org/en-US/docs/Web/API/Window.scrollX) from MDN. |
+ * * [The Screen interface |
+ * specification](http://www.w3.org/TR/cssom-view/#screen) from W3C. |
+ * * [scrollX](https://developer.mozilla.org/en-US/docs/Web/API/Window.scrollX) |
+ * from MDN. |
*/ |
@DomName('Window.scrollX') |
@DocsEditable() |
@@ -283,10 +283,10 @@ $if DART2JS |
* |
* ## Other resources |
* |
- * * [The Screen interface specification] |
- * (http://www.w3.org/TR/cssom-view/#screen) from W3C. |
- * * [scrollY] |
- * (https://developer.mozilla.org/en-US/docs/Web/API/Window.scrollY) from MDN. |
+ * * [The Screen interface |
+ * specification](http://www.w3.org/TR/cssom-view/#screen) from W3C. |
+ * * [scrollY](https://developer.mozilla.org/en-US/docs/Web/API/Window.scrollY) |
+ * from MDN. |
*/ |
@DomName('Window.scrollY') |
@DocsEditable() |