Update web-platform-tests URLs after repo move

Part of https://bit.ly/wpt-transition.

Most of the changes were done as such:
```
git grep -l w3c/web-platform-tests | xargs sed -i 's#https://github.com/w3c/web-platform-tests#https://github.com/web-platform-tests/wpt#g'
git grep -lF 'web-platform-tests.org' | xargs sed -i 's#http://web-platform-tests.org#https://web-platform-tests.org#g'
```

The http => https changes included here because one such URL got
involved in the first after manual tweaks.

Change-Id: Ied8334b88e4a0936cd995a002bb2a502c04ecfc7
Reviewed-on: https://chromium-review.googlesource.com/1080510
Reviewed-by: Tim Volodine <[email protected]>
Reviewed-by: Robert Ma <[email protected]>
Reviewed-by: Rick Byers <[email protected]>
Commit-Queue: Philip Jägenstedt <[email protected]>
Cr-Commit-Position: refs/heads/master@{#563242}
diff --git a/content/shell/test_runner/test_runner.cc b/content/shell/test_runner/test_runner.cc
index 2fe6b45..4ff9c3f 100644
--- a/content/shell/test_runner/test_runner.cc
+++ b/content/shell/test_runner/test_runner.cc
@@ -319,11 +319,11 @@
   //
   // 1. For normal reftest, we would like to take screenshots after web fonts
   //    are loaded, i.e. replicate the behavior of this injected script:
-  //    https://github.com/w3c/web-platform-tests/blob/master/tools/wptrunner/wptrunner/executors/reftest-wait_webdriver.js
+  //    https://github.com/web-platform-tests/wpt/blob/master/tools/wptrunner/wptrunner/executors/reftest-wait_webdriver.js
   // 2. For reftests with a 'reftest-wait' class on the root element, reference
   //    comparison is delayed until that class attribute is removed. To support
   //    this feature, we use a mutation observer.
-  //    http://web-platform-tests.org/writing-tests/reftests.html#controlling-when-comparison-occurs
+  //    https://web-platform-tests.org/writing-tests/reftests.html#controlling-when-comparison-occurs
   //
   // Note that this method may be called multiple times on a frame, so we put
   // the code behind a flag. The flag is safe to be installed on testRunner
diff --git a/docs/testing/layout_tests_tips.md b/docs/testing/layout_tests_tips.md
index fcda5dd8..69efd16 100644
--- a/docs/testing/layout_tests_tips.md
+++ b/docs/testing/layout_tests_tips.md
@@ -20,7 +20,7 @@
 ## General Principles
 
 This section contains guidelines adopted from
-[web-platform-tests documentation](http://web-platform-tests.org/writing-tests/general-guidelines.html)
+[web-platform-tests documentation](https://web-platform-tests.org/writing-tests/general-guidelines.html)
 and
 [WebKit's Wiki page on Writing good test cases](https://trac.webkit.org/wiki/Writing%20Layout%20Tests%20for%20DumpRenderTree),
 with Blink-specific flavoring.
@@ -93,7 +93,7 @@
 `testharness.js` makes a test self-describing when used correctly. Other types
 of tests, such as reference tests and
 [tests with manual fallback](./layout_tests_with_manual_fallback.md),
-[must be carefully designed](http://web-platform-tests.org/writing-tests/manual.html#requirements-for-a-manual-test)
+[must be carefully designed](https://web-platform-tests.org/writing-tests/manual.html#requirements-for-a-manual-test)
 to be self-describing.
 
 ### Minimal
@@ -107,7 +107,7 @@
 
 Tests should provide as much relevant information as possible when failing.
 `testharness.js` tests should prefer
-[rich assert_ functions](https://github.com/w3c/web-platform-tests/blob/master/docs/_writing-tests/testharness-api.md#list-of-assertions)
+[rich assert_ functions](https://web-platform-tests.org/writing-tests/testharness-api.html#list-of-assertions)
 to combining `assert_true()` with a boolean operator. Using appropriate
 `assert_` functions results in better diagnostic output when the assertion
 fails.
diff --git a/docs/testing/layout_tests_with_manual_fallback.md b/docs/testing/layout_tests_with_manual_fallback.md
index 0d8e3a6..74aa2f9 100644
--- a/docs/testing/layout_tests_with_manual_fallback.md
+++ b/docs/testing/layout_tests_with_manual_fallback.md
@@ -11,7 +11,7 @@
 A popular pattern used in these tests is to rely on the user to perform some
 manual steps in order to run the test case in a normal browser session. These
 tests are effectively
-[manual tests](http://web-platform-tests.org/writing-tests/manual.html), with
+[manual tests](https://web-platform-tests.org/writing-tests/manual.html), with
 additional JavaScript code that automatically performs the desired manual steps,
 when loaded in an environment that exposes the needed testing APIs.
 
diff --git a/docs/testing/web_platform_tests.md b/docs/testing/web_platform_tests.md
index d50041d..910962b 100644
--- a/docs/testing/web_platform_tests.md
+++ b/docs/testing/web_platform_tests.md
@@ -5,7 +5,7 @@
 mission of improving the web. We believe that leveraging and contributing to a
 shared test suite is one of the most important tools in achieving
 interoperability between browsers. The [web-platform-tests
-repository](https://github.com/w3c/web-platform-tests) is the primary shared
+repository](https://github.com/web-platform-tests/wpt) is the primary shared
 test suite where all browser engines are collaborating.
 
 Chromium has a 2-way import/export process with the upstream web-platform-tests
@@ -13,7 +13,7 @@
 [LayoutTests/external/wpt](../../third_party/WebKit/LayoutTests/external/wpt)
 and any changes to the imported tests are also exported to web-platform-tests.
 
-See http://web-platform-tests.org/ for general documentation on
+See https://web-platform-tests.org/ for general documentation on
 web-platform-tests, including tips for writing and reviewing tests.
 
 [TOC]
@@ -68,7 +68,7 @@
 If you upload a CL with any changes in
 [third_party/WebKit/LayoutTests/external/wpt](../../third_party/WebKit/LayoutTests/external/wpt),
 once you add reviewers the exporter will create a provisional pull request with
-those changes in the [upstream WPT GitHub repository](https://github.com/w3c/web-platform-tests/).
+those changes in the [upstream WPT GitHub repository](https://github.com/web-platform-tests/wpt/).
 
 Once you're ready to land your CL, please check the Travis CI status on the
 upstream PR (link at the bottom of the page). If it's green, go ahead and land your CL
@@ -82,9 +82,9 @@
 
 -   CLs that change over 1000 files will not be exported.
 -   All PRs use the
-    [`chromium-export`](https://github.com/w3c/web-platform-tests/pulls?utf8=%E2%9C%93&q=is%3Apr%20label%3Achromium-export) label.
+    [`chromium-export`](https://github.com/web-platform-tests/wpt/pulls?utf8=%E2%9C%93&q=is%3Apr%20label%3Achromium-export) label.
 -   All PRs for CLs that haven't yet been landed in Chromium also use the
-    [`do not merge yet`](https://github.com/w3c/web-platform-tests/pulls?q=is%3Apr+is%3Aopen+label%3A%22do+not+merge+yet%22) label.
+    [`do not merge yet`](https://github.com/web-platform-tests/wpt/pulls?q=is%3Apr+is%3Aopen+label%3A%22do+not+merge+yet%22) label.
 -   The exporter cannot create upstream PRs for in-flight CLs with binary files (e.g. webm files).
     An export PR will still be made after the CL lands.
 
@@ -184,19 +184,19 @@
 is and isn't required.
 
 When implementation experience is needed to inform the specification work,
-[tentative tests](http://web-platform-tests.org/writing-tests/file-names.html)
+[tentative tests](https://web-platform-tests.org/writing-tests/file-names.html)
 can be appropriate. It should be apparent in context why the test is tentative
 and what needs to be resolved to make it non-tentative.
 
 ### Tests that require testing APIs
 
-[testdriver.js](http://web-platform-tests.org/writing-tests/testdriver.html)
+[testdriver.js](https://web-platform-tests.org/writing-tests/testdriver.html)
 provides a means to automate tests that cannot be written purely using web
 platform APIs, similar to `internals.*` and `eventSender.*` in regular Blink
 layout tests.
 
 If no testdriver.js API exists, check if it's a
-[known issue](https://github.com/w3c/web-platform-tests/labels/testdriver.js)
+[known issue](https://github.com/web-platform-tests/wpt/labels/testdriver.js)
 and otherwise consider filing a new issue.
 
 An alternative is to write manual tests that are automated with scripts from
@@ -240,7 +240,7 @@
 ### Direct pull requests
 
 It's still possible to make direct pull requests to web-platform-tests, see
-http://web-platform-tests.org/appendix/github-intro.html.
+https://web-platform-tests.org/appendix/github-intro.html.
 
 ## Running tests
 
diff --git a/docs/testing/writing_layout_tests.md b/docs/testing/writing_layout_tests.md
index 7d90642..f71eb3a 100644
--- a/docs/testing/writing_layout_tests.md
+++ b/docs/testing/writing_layout_tests.md
@@ -73,7 +73,7 @@
 
 Tests should be written under the assumption that they will be upstreamed
 to the WPT project. To this end, tests should follow the
-[WPT guidelines](http://web-platform-tests.org/writing-tests/).
+[WPT guidelines](https://web-platform-tests.org/writing-tests/).
 
 
 There is no style guide that applies to all layout tests. However, some projects
@@ -93,18 +93,18 @@
 less reliable tests.
 
 All new JavaScript tests should be written using the
-[testharness.js](https://github.com/w3c/web-platform-tests/tree/master/resources)
+[testharness.js](https://github.com/web-platform-tests/wpt/tree/master/resources)
 testing framework. This framework is used by the tests in the
-[web-platform-tests](https://github.com/w3c/web-platform-tests) repository,
+[web-platform-tests](https://github.com/web-platform-tests/wpt) repository,
 which is shared with all the other browser vendors, so `testharness.js` tests
 are more accessible to browser developers.
 
-See the [API documentation](http://web-platform-tests.org/writing-tests/testharness-api.html)
+See the [API documentation](https://web-platform-tests.org/writing-tests/testharness-api.html)
 for a thorough introduction to `testharness.js`.
 
 Layout tests should follow the recommendations of the above documentation.
 Furthermore, layout tests should include relevant
-[metadata](http://web-platform-tests.org/writing-tests/css-metadata.html). The
+[metadata](https://web-platform-tests.org/writing-tests/css-metadata.html). The
 specification URL (in `<link rel="help">`) is almost always relevant, and is
 incredibly helpful to a developer who needs to understand the test quickly.
 
@@ -190,7 +190,7 @@
 This is contrary to the WPT guidelines, which call for absolute paths.
 This limitation does not apply to the tests in `LayoutTests/http`, which rely on
 an HTTP server, or to the tests in `LayoutTests/external/wpt`, which are
-imported from the [WPT repository](https://github.com/w3c/web-platform-tests).
+imported from the [WPT repository](https://github.com/web-platform-tests/wpt).
 ***
 
 ### WPT Supplemental Testing APIs
@@ -362,7 +362,7 @@
 cannot be covered by JavaScript tests.
 
 New reference tests should follow the
-[WPT reftests guidelines](http://web-platform-tests.org/writing-tests/reftests.html).
+[WPT reftests guidelines](https://web-platform-tests.org/writing-tests/reftests.html).
 The most important points are summarized below.
 
 * &#x1F6A7; The test page declares the reference page using a
@@ -435,7 +435,7 @@
 Pixel tests should still follow the principles laid out above. Pixel tests pose
 unique challenges to the desire to have *self-describing* and *cross-platform*
 tests. The
-[WPT rendering test guidelines](http://web-platform-tests.org/writing-tests/rendering.html)
+[WPT rendering test guidelines](https://web-platform-tests.org/writing-tests/rendering.html)
 contain useful guidance. The most relevant pieces of advice are below.
 
 * Whenever possible, use a green paragraph / page / square to indicate success.
diff --git a/services/device/generic_sensor/README.md b/services/device/generic_sensor/README.md
index 405f807..9e31045 100644
--- a/services/device/generic_sensor/README.md
+++ b/services/device/generic_sensor/README.md
@@ -48,7 +48,7 @@
 
 * Browser tests are located in `content/browser/device_sensors`.
 * Layout tests are located in `third_party/WebKit/LayoutTests/device_orientation`.
-* Web platform tests are located in `third_party/WebKit/LayoutTests/external/wpt/orientation-event` and are a mirror of the [web-platform-tests GitHub repository](https://github.com/w3c/web-platform-tests).
+* Web platform tests are located in `third_party/WebKit/LayoutTests/external/wpt/orientation-event` and are a mirror of the [web-platform-tests GitHub repository](https://github.com/web-platform-tests/wpt).
 
 ## Permissions
 
diff --git a/third_party/WebKit/LayoutTests/NeverFixTests b/third_party/WebKit/LayoutTests/NeverFixTests
index b1f254b..1d6c96a 100644
--- a/third_party/WebKit/LayoutTests/NeverFixTests
+++ b/third_party/WebKit/LayoutTests/NeverFixTests
@@ -1835,7 +1835,7 @@
 external/wpt/css/css-color/t32-opacity-offscreen-multiple-boxes-2-c.xht [ WontFix ]
 external/wpt/css/css-color/t422-rgba-onscreen-b.xht [ WontFix ]
 
-# https://github.com/w3c/web-platform-tests/issues/8547
+# https://github.com/web-platform-tests/wpt/issues/8547
 external/wpt/css/mediaqueries/device-aspect-ratio-001.html [ WontFix ]
 external/wpt/css/mediaqueries/device-aspect-ratio-005.html [ WontFix ]
 
diff --git a/third_party/WebKit/LayoutTests/custom-elements/spec/define-element.html b/third_party/WebKit/LayoutTests/custom-elements/spec/define-element.html
index a61859e8..034d12339 100644
--- a/third_party/WebKit/LayoutTests/custom-elements/spec/define-element.html
+++ b/third_party/WebKit/LayoutTests/custom-elements/spec/define-element.html
@@ -8,7 +8,7 @@
 <body>
 <script>
 // TODO(dominicc): Merge these tests with
-// https://github.com/w3c/web-platform-tests/pull/2940
+// https://github.com/web-platform-tests/wpt/pull/2940
 
 'use strict';
 
diff --git a/third_party/WebKit/LayoutTests/dom/domparsing/README.md b/third_party/WebKit/LayoutTests/dom/domparsing/README.md
index 460ef4e..6259c9db 100644
--- a/third_party/WebKit/LayoutTests/dom/domparsing/README.md
+++ b/third_party/WebKit/LayoutTests/dom/domparsing/README.md
@@ -1,3 +1,3 @@
 Tests for [DOM Parsing and Serialization](https://w3c.github.io/DOM-Parsing/)
 
-Corresponding web-platform-tests: [domparsing](https://github.com/w3c/web-platform-tests/tree/master/domparsing)
+Corresponding web-platform-tests: [domparsing](https://github.com/web-platform-tests/wpt/tree/master/domparsing)
diff --git a/third_party/WebKit/LayoutTests/dom/legacy_dom_conformance/README.md b/third_party/WebKit/LayoutTests/dom/legacy_dom_conformance/README.md
index 3207e8e1..4291a3be 100644
--- a/third_party/WebKit/LayoutTests/dom/legacy_dom_conformance/README.md
+++ b/third_party/WebKit/LayoutTests/dom/legacy_dom_conformance/README.md
@@ -1,5 +1,5 @@
 This direcotry contains tests imported from
 [Document Object Model Conformance Test Suites](https://www.w3.org/DOM/Test/).
 
-Many tests must be overlapped with [web-platform-tests](https://github.com/w3c/web-platform-tests/).
+Many tests must be overlapped with [web-platform-tests](https://github.com/web-platform-tests/wpt/).
 We should verify it, and remove this directory entirely.
diff --git a/third_party/WebKit/LayoutTests/external/PRESUBMIT.py b/third_party/WebKit/LayoutTests/external/PRESUBMIT.py
index c9d0e9fb..d315923 100644
--- a/third_party/WebKit/LayoutTests/external/PRESUBMIT.py
+++ b/third_party/WebKit/LayoutTests/external/PRESUBMIT.py
@@ -5,7 +5,7 @@
 """Lint functionality duplicated from web-platform-tests upstream.
 
 This is to catch lint errors that would otherwise be caught in WPT CI.
-See http://web-platform-tests.org/writing-tests/lint-tool.html for more
+See https://web-platform-tests.org/writing-tests/lint-tool.html for more
 information about the lint tool.
 """
 
diff --git a/third_party/WebKit/LayoutTests/external/README b/third_party/WebKit/LayoutTests/external/README
index 3f43b5b4..1f56eaab 100644
--- a/third_party/WebKit/LayoutTests/external/README
+++ b/third_party/WebKit/LayoutTests/external/README
@@ -1,6 +1,6 @@
 The test suites in this directory are synced with third-party repos.
 
-The tests in wpt are imported from https://github.com/w3c/web-platform-tests,
+The tests in wpt are imported from https://github.com/web-platform-tests/wpt,
 and changes in the wpt directory are automatically upstreamed, usually within
 24 hours.
 
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/offscreencanvas-text/tools/gentestutils.py b/third_party/WebKit/LayoutTests/fast/canvas/offscreencanvas-text/tools/gentestutils.py
index 36d0b3b..96674f0 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/offscreencanvas-text/tools/gentestutils.py
+++ b/third_party/WebKit/LayoutTests/fast/canvas/offscreencanvas-text/tools/gentestutils.py
@@ -7,7 +7,7 @@
 # http://philip.html5.org/tests/canvas/suite/tests/
 #
 # It has been adapted for use with the Web Platform Test Suite suite at
-# https://github.com/w3c/web-platform-tests/
+# https://github.com/web-platform-tests/wpt/
 #
 # The original version had a number of now-removed features (multiple versions of
 # each test case of varying verbosity, Mozilla mochitests, semi-automated test
diff --git a/third_party/WebKit/LayoutTests/fullscreen/api/document-exit-fullscreen-vs-request.html b/third_party/WebKit/LayoutTests/fullscreen/api/document-exit-fullscreen-vs-request.html
index 85758c77..841452fa 100644
--- a/third_party/WebKit/LayoutTests/fullscreen/api/document-exit-fullscreen-vs-request.html
+++ b/third_party/WebKit/LayoutTests/fullscreen/api/document-exit-fullscreen-vs-request.html
@@ -6,7 +6,7 @@
 <div id="log"></div>
 <div id="parent"><div></div></div>
 <script>
-// Adapted from https://github.com/w3c/web-platform-tests/pull/4250
+// Adapted from https://github.com/web-platform-tests/wpt/pull/4250
 // TODO(foolip): Remove this test when the above is imported and passing.
 async_test(t => {
   const parent = document.getElementById("parent");
diff --git a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-two-elements.html b/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-two-elements.html
index 8644e18c..218966f 100644
--- a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-two-elements.html
+++ b/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-two-elements.html
@@ -7,7 +7,7 @@
 <div id="a"></div>
 <div id="b"></div>
 <script>
-// Adapted from https://github.com/w3c/web-platform-tests/pull/4250
+// Adapted from https://github.com/web-platform-tests/wpt/pull/4250
 // TODO(foolip): Remove this test when the above is imported and passing.
 async_test(t => {
   // Request fullscreen on both elements, but in reverse tree order.
diff --git a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-two-iframes.html b/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-two-iframes.html
index 59570a36..7a7b483e 100644
--- a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-two-iframes.html
+++ b/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-two-iframes.html
@@ -7,7 +7,7 @@
 <iframe id="a" allowfullscreen></iframe>
 <iframe id="b" allowfullscreen></iframe>
 <script>
-// Adapted from https://github.com/w3c/web-platform-tests/pull/4250
+// Adapted from https://github.com/web-platform-tests/wpt/pull/4250
 // TODO(foolip): Remove this test when the above is imported and passing.
 async_test(t => {
   // Request fullscreen on the body elements of both iframes, but in reverse
diff --git a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-vs-exit.html b/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-vs-exit.html
index ce9c2b2c..a615001 100644
--- a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-vs-exit.html
+++ b/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-vs-exit.html
@@ -6,7 +6,7 @@
 <div id="log"></div>
 <div id="target"></div>
 <script>
-// Adapted from https://github.com/w3c/web-platform-tests/pull/4250
+// Adapted from https://github.com/web-platform-tests/wpt/pull/4250
 // TODO(foolip): Remove this test when the above is imported and passing.
 async_test(t => {
   const target = document.getElementById("target");
diff --git a/third_party/WebKit/LayoutTests/http/tests/dom/EventListener-incumbent-global-1.html b/third_party/WebKit/LayoutTests/http/tests/dom/EventListener-incumbent-global-1.html
index 893763e..9d97636 100644
--- a/third_party/WebKit/LayoutTests/http/tests/dom/EventListener-incumbent-global-1.html
+++ b/third_party/WebKit/LayoutTests/http/tests/dom/EventListener-incumbent-global-1.html
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <!--
 This test is imported from
-https://github.com/w3c/web-platform-tests/blob/master/dom/events/EventListener-incumbent-global-1.sub.html
+https://github.com/web-platform-tests/wpt/blob/master/dom/events/EventListener-incumbent-global-1.sub.html
 -->
 <title></title>
 <script src="/resources/testharness.js"></script>
diff --git a/third_party/WebKit/LayoutTests/http/tests/dom/EventListener-incumbent-global-2.html b/third_party/WebKit/LayoutTests/http/tests/dom/EventListener-incumbent-global-2.html
index 1179e8c..d172089 100644
--- a/third_party/WebKit/LayoutTests/http/tests/dom/EventListener-incumbent-global-2.html
+++ b/third_party/WebKit/LayoutTests/http/tests/dom/EventListener-incumbent-global-2.html
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <!--
 This test is imported from
-https://github.com/w3c/web-platform-tests/blob/master/dom/events/EventListener-incumbent-global-2.sub.html
+https://github.com/web-platform-tests/wpt/blob/master/dom/events/EventListener-incumbent-global-2.sub.html
 -->
 <title></title>
 <script src="/resources/testharness.js"></script>
diff --git a/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/abort-after-send.html b/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/abort-after-send.html
index fdc3346..14ce615 100644
--- a/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/abort-after-send.html
+++ b/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/abort-after-send.html
@@ -8,7 +8,7 @@
 <body>
 Correct progress event sequencing on abort(), <a href="http://crbug.com/315488">bug 315488</a>.
 <script>
-// Based on http://w3c-test.org/web-platform-tests/master/XMLHttpRequest/abort-during-upload.htm
+// Based on http://w3c-test.org/xhr/abort-during-upload.htm
 
 var expected = [
     'upload', 'progress',
diff --git a/third_party/WebKit/LayoutTests/media/autoplay.html b/third_party/WebKit/LayoutTests/media/autoplay.html
index 3dbd455..3a711dd4 100644
--- a/third_party/WebKit/LayoutTests/media/autoplay.html
+++ b/third_party/WebKit/LayoutTests/media/autoplay.html
@@ -1,5 +1,5 @@
 <!doctype html>
-<!-- original: https://github.com/w3c/web-platform-tests/blob/6b3893bb99f70e4238011dbcd1f380891e89ec5e/html/semantics/embedded-content-0/media-elements/autoplay.html -->
+<!-- original: https://github.com/web-platform-tests/wpt/blob/6b3893bb99f70e4238011dbcd1f380891e89ec5e/html/semantics/embedded-content-0/media-elements/autoplay.html -->
 <title>autoplay</title>
 <script src="../resources/testharness.js"></script>
 <script src="../resources/testharnessreport.js"></script>
diff --git a/third_party/WebKit/LayoutTests/media/seek-to-currentTime.html b/third_party/WebKit/LayoutTests/media/seek-to-currentTime.html
index e657ba6..1e8b13ac 100644
--- a/third_party/WebKit/LayoutTests/media/seek-to-currentTime.html
+++ b/third_party/WebKit/LayoutTests/media/seek-to-currentTime.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<!-- original: https://github.com/w3c/web-platform-tests/blob/master/html/semantics/embedded-content/media-elements/seeking/seek-to-currentTime.html -->
+<!-- original: https://github.com/web-platform-tests/wpt/blob/master/html/semantics/embedded-content/media-elements/seeking/seek-to-currentTime.html -->
 <title>seek to currentTime</title>
 <script src="../resources/testharness.js"></script>
 <script src="../resources/testharnessreport.js"></script>
diff --git a/third_party/WebKit/LayoutTests/resize-observer/README.md b/third_party/WebKit/LayoutTests/resize-observer/README.md
index df2b2f0..b0dfaf3b 100644
--- a/third_party/WebKit/LayoutTests/resize-observer/README.md
+++ b/third_party/WebKit/LayoutTests/resize-observer/README.md
@@ -3,4 +3,4 @@
 The tests use APIs not available in web-platform-tests suite.
 
 Standard tests are in
-https://github.com/w3c/web-platform-tests/tree/master/resize-observer
+https://github.com/web-platform-tests/wpt/tree/master/resize-observer
diff --git a/third_party/WebKit/LayoutTests/resources/README.txt b/third_party/WebKit/LayoutTests/resources/README.txt
index ec4f135b..a0b985a 100644
--- a/third_party/WebKit/LayoutTests/resources/README.txt
+++ b/third_party/WebKit/LayoutTests/resources/README.txt
@@ -18,5 +18,5 @@
 https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md
 
 References:
-* web-platform-tests  https://github.com/w3c/web-platform-tests
+* web-platform-tests  https://github.com/web-platform-tests/wpt
 * webidl2.js          https://github.com/w3c/webidl2.js
diff --git a/third_party/WebKit/LayoutTests/resources/testharnessreport.js b/third_party/WebKit/LayoutTests/resources/testharnessreport.js
index 820a803a..301fd29 100644
--- a/third_party/WebKit/LayoutTests/resources/testharnessreport.js
+++ b/third_party/WebKit/LayoutTests/resources/testharnessreport.js
@@ -9,7 +9,7 @@
  *
  * For more documentation about the callback functions and the
  * parameters they are called with, see testharness.js, or the docs at:
- * http://web-platform-tests.org/writing-tests/testharness-api.html
+ * https://web-platform-tests.org/writing-tests/testharness-api.html
  */
 
 (function() {
diff --git a/third_party/blink/renderer/core/html/custom/README.md b/third_party/blink/renderer/core/html/custom/README.md
index 289833d..243b82b 100644
--- a/third_party/blink/renderer/core/html/custom/README.md
+++ b/third_party/blink/renderer/core/html/custom/README.md
@@ -85,9 +85,9 @@
 The custom element layout tests are generally in
 third_party/WebKit/LayoutTests/custom-elements.
 
-All custom elements layout tests use the [W3C web-platform-tests
-harness](http://web-platform-tests.org/) and follow its style. The
-W3C is not very prescriptive, so be consistent with other custom
+All custom elements layout tests use the [web-platform-tests
+harness](https://web-platform-tests.org/) and follow its style. The
+WPT style is not very prescriptive, so be consistent with other custom
 elements tests.
 
 When naming tests, use short names describing what the test is doing.
@@ -99,8 +99,8 @@
 
 ###### Spec Tests
 
-These will be upstreamed to the W3C, replacing [the tests for
-registerElement](https://github.com/w3c/web-platform-tests/commits/master/custom-elements)
+These will be upstreamed to WPT, replacing [the tests for
+registerElement](https://github.com/web-platform-tests/wpt/tree/master/custom-elements)
 we contributed earlier. To facilitate that, follow these guidelines:
 
 * Keep the tests together in the `spec` directory.
diff --git a/third_party/blink/tools/blinkpy/third_party/README.chromium b/third_party/blink/tools/blinkpy/third_party/README.chromium
index 2b4ea64..e201727b 100644
--- a/third_party/blink/tools/blinkpy/third_party/README.chromium
+++ b/third_party/blink/tools/blinkpy/third_party/README.chromium
@@ -31,7 +31,7 @@
 
 Name: web-platform-tests - Test Suites for Web Platform specifications
 Short Name: wpt
-URL: https://github.com/w3c/web-platform-tests/
+URL: https://github.com/web-platform-tests/wpt/
 Version: ad84337c037685845f96d63618bb9b46ae9e9468
 License: LICENSES FOR W3C TEST SUITES (http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html)
 License File: wpt/wpt/LICENSE.md
diff --git a/third_party/blink/tools/blinkpy/third_party/wpt/README.chromium b/third_party/blink/tools/blinkpy/third_party/wpt/README.chromium
index 72244dc..6e73fa0 100644
--- a/third_party/blink/tools/blinkpy/third_party/wpt/README.chromium
+++ b/third_party/blink/tools/blinkpy/third_party/wpt/README.chromium
@@ -3,7 +3,7 @@
 Design Doc: https://goo.gl/iXUaZd
 
 This directory contains checked out and reduced code from web-platform-tests
-(https://github.com/w3c/web-platform-tests/) required to run WPT tests as part
+(https://github.com/web-platform-tests/wpt/) required to run WPT tests as part
 of Blink's test infrastructure and some maintenance/configuration code.
 
 The third party code lives entirely in the wpt subdirectory:
@@ -126,7 +126,7 @@
 Configuration
 
 Read instructions in WPT README:
-https://github.com/w3c/web-platform-tests/blob/master/README.md
+https://github.com/web-platform-tests/wpt/blob/master/README.md
 
 Also, check out the WPTServe Documentation
 (https://wptserve.readthedocs.org/en/latest/).
diff --git a/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/serve/serve.py b/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/serve/serve.py
index 0fd5f907..75e55be 100644
--- a/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/serve/serve.py
+++ b/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/serve/serve.py
@@ -454,7 +454,7 @@
     # for this context. These systems do not reserve any value for this
     # purpose, so the inavailability of the domains must be taken for granted.
     #
-    # https://github.com/w3c/web-platform-tests/issues/10560
+    # https://github.com/web-platform-tests/wpt/issues/10560
     if platform.uname()[0] == "Windows":
         for not_domain in config.not_domains_set:
             rv.append("0.0.0.0\t%s\n" % not_domain)