Update weblinks in comments to msdn.microsoft.com
authorFomafix <fomafix@googlemail.com>
Fri, 9 Jun 2017 09:55:28 +0000 (11:55 +0200)
committerFomafix <fomafix@googlemail.com>
Fri, 9 Jun 2017 09:55:28 +0000 (11:55 +0200)
Change-Id: I1c9c1b6c3c98f09d1323f93726863fbb707463af

includes/Sanitizer.php
includes/api/ApiOpenSearch.php
tests/phpunit/includes/HtmlTest.php

index 5aaa3ed..0f7991a 100644 (file)
@@ -793,7 +793,7 @@ class Sanitizer {
                        }
 
                        # Strip javascript "expression" from stylesheets.
-                       # http://msdn.microsoft.com/workshop/author/dhtml/overview/recalc.asp
+                       # https://msdn.microsoft.com/en-us/library/ms537634.aspx
                        if ( $attribute == 'style' ) {
                                $value = Sanitizer::checkCss( $value );
                        }
index dc1b4e7..0e52b33 100644 (file)
@@ -233,7 +233,7 @@ class ApiOpenSearch extends ApiBase {
                                break;
 
                        case 'xml':
-                               // http://msdn.microsoft.com/en-us/library/cc891508%28v=vs.85%29.aspx
+                               // https://msdn.microsoft.com/en-us/library/cc891508(v=vs.85).aspx
                                $imageKeys = [
                                        'source' => true,
                                        'alt' => true,
index 115a8cf..f3d4916 100644 (file)
@@ -588,7 +588,7 @@ class HtmlTest extends MediaWikiTestCase {
                ];
 
                # <button> specific handling
-               # see remarks on http://msdn.microsoft.com/en-us/library/ie/ms535211%28v=vs.85%29.aspx
+               # see remarks on https://msdn.microsoft.com/library/ms535211(v=vs.85).aspx
                $cases[] = [ '<button type="submit"></button>',
                        'button', [ 'type' => 'submit' ],
                        'According to standard the default type is "submit". '