Skip to content

Commit 31e06e4

Browse files
authored
Internationalise MDN links (#3293)
1 parent 8bbef7f commit 31e06e4

182 files changed

Lines changed: 833 additions & 833 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

sql/2019/css/02_07.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
CREATE TEMPORARY FUNCTION getLengthUnit(css STRING)
44
RETURNS ARRAY<STRING> LANGUAGE js AS '''
55
try {
6-
// https://developer.mozilla.org/en-US/docs/Web/CSS/length
6+
// https://developer.mozilla.org/docs/Web/CSS/length
77
var units = ['cap', 'ch', 'em', 'ex', 'ic', 'lh', 'rem',
88
'rlh', 'vh', 'vw', 'vi', 'vb', 'vmin', 'vmax',
99
'px', 'cm', 'nm', 'Q', 'in', 'pc', 'pt'];

sql/2020/third-parties/distribution_of_3XX_response_body_size.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Distribution of response body size by redirected third parties
3-
# HTTP status codes documentation: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status
3+
# HTTP status codes documentation: https://developer.mozilla.org/docs/Web/HTTP/Status
44

55
WITH requests AS (
66
SELECT

sql/2020/third-parties/percent_of_third_party_cache.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Percent of third party requests cached
3-
# Cache-Control documentation: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control#Directives
3+
# Cache-Control documentation: https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control#Directives
44

55
WITH requests AS (
66
SELECT

sql/2020/third-parties/tao_by_third_party.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Percent of third-party requests with "Timing-Allow-Origin" headers
3-
# Header reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Timing-Allow-Origin
3+
# Header reference: https://developer.mozilla.org/docs/Web/HTTP/Headers/Timing-Allow-Origin
44

55
CREATE TEMP FUNCTION get_tao(headers STRING)
66
RETURNS STRING LANGUAGE js AS '''

sql/2021/css/atproperty_adoption.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Percent of pages that use @property
3-
# https://developer.mozilla.org/en-US/docs/Web/CSS/@property
3+
# https://developer.mozilla.org/docs/Web/CSS/@property
44
CREATE TEMP FUNCTION countAtProperties(css STRING) RETURNS ARRAY<INT64> LANGUAGE js AS '''
55
try {
66
var $ = JSON.parse(css);

sql/2021/css/atproperty_javascript_adoption.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# CSS.registerProperty adoption
3-
# https://developer.mozilla.org/en-US/docs/Web/API/CSS/RegisterProperty
3+
# https://developer.mozilla.org/docs/Web/API/CSS/RegisterProperty
44
SELECT DISTINCT
55
client,
66
num_urls,

sql/2021/resource-hints/invalid_preload_types.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CREATE TEMPORARY FUNCTION getInvalidTypes(almanac_string STRING)
55
RETURNS ARRAY<STRUCT<type STRING, num_occurrences NUMERIC>>
66
LANGUAGE js AS '''
77
try {
8-
// obtained from https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types/preload#what_types_of_content_can_be_preloaded
8+
// obtained from https://developer.mozilla.org/docs/Web/HTML/Link_types/preload#what_types_of_content_can_be_preloaded
99
var validResourceTypes = [
1010
"audio",
1111
"document",

sql/2021/third-parties/distribution_of_3XX_response_body_size.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Distribution of response body size by redirected third parties
3-
# HTTP status codes documentation: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status
3+
# HTTP status codes documentation: https://developer.mozilla.org/docs/Web/HTTP/Status
44

55
WITH requests AS (
66
SELECT

sql/2021/third-parties/percent_of_third_party_cache.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Percent of third party requests cached
3-
# Cache-Control documentation: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control#Directives
3+
# Cache-Control documentation: https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control#Directives
44

55
WITH requests AS (
66
SELECT

sql/2021/third-parties/tao_by_third_party.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Percent of third-party requests with "Timing-Allow-Origin" headers
3-
# Header reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Timing-Allow-Origin
3+
# Header reference: https://developer.mozilla.org/docs/Web/HTTP/Headers/Timing-Allow-Origin
44

55
CREATE TEMP FUNCTION get_tao(headers STRING)
66
RETURNS STRING LANGUAGE js AS '''

0 commit comments

Comments
 (0)