diff --git a/add-specs.py b/add-specs.py new file mode 100755 index 00000000000000..2c1f0d8bf2c224 --- /dev/null +++ b/add-specs.py @@ -0,0 +1,165 @@ +#!/usr/bin/env python2 +import certifi +import io +import json +import os.path +import sys +import time +import urllib3 +from collections import OrderedDict +from lxml.html import parse +from termcolor import cprint +from urlparse import urlparse + + +def alarm(message): + cprint('Alarm: %s' % message, 'red', attrs=['bold']) + + +def getSpecsArray(mdn_url, sectionname, spec_urls, http): + url = 'https://developer.mozilla.org' + urlparse(mdn_url).path + \ + '?raw¯os§ion=' + sectionname + print 'Trying %s' % url + response = http.request('GET', url) + if response.status == 404: + return [] + if response.status > 499: + sys.stderr.write('50x for %s. Will retry after 60s...\n' % url) + time.sleep(61) + print 'Retrying %s' % url + response = http.request('GET', url) + if response.status == 404: + return [] + if response.status > 499: + sys.stderr.write('50x for %s. Giving up.\n' % url) + return [] + html = response.data.decode('utf-8') + if html == '': + return [] + try: + doc = parse(io.StringIO(unicode(html))) + rows = doc.xpath('//table[1]//tr[td]') + if not(rows): + return [] + specs = [] + for row in rows: + hrefs = row.xpath('td[1]/a/@href') + if not(hrefs): + continue + spec_url = hrefs[0] + if not(urlparse(spec_url).fragment): + alarm(mdn_url + ' has spec URL with no fragment: ' + spec_url) + continue + if not(urlparse(spec_url).hostname): + alarm(mdn_url + ' has spec URL with no hostname: ' + spec_url) + continue + spec_name = '' + for base_url in spec_urls: + if spec_url.startswith(base_url): + spec_name = spec_urls[base_url]['name'] + cprint('Adding %s (%s)' % (spec_url, spec_name), 'green') + spec = OrderedDict() + spec['name'] = spec_name + spec['url'] = spec_url + specs.append(spec) + return specs + except Exception, e: + sys.stderr.write('Something went wrong: %s\n' % str(e)) + return [] + + +def walkBaseData(basedata, filename, spec_urls, http, basename, sectionname, + bcd_data): + for featurename in basedata: + feature_data = basedata[featurename] + path = '%s.%s.%s' % (sectionname, basename, featurename) + bcd_data[sectionname][basename][featurename] = \ + processTarget(feature_data, filename, spec_urls, http, path) + for subfeaturename in feature_data: + subfeaturedata = feature_data[subfeaturename] + path = '%s.%s.%s.%s' % (sectionname, basename, featurename, + subfeaturename) + bcd_data[sectionname][basename][featurename][subfeaturename] = \ + processTarget(subfeaturedata, filename, spec_urls, http, path) + + +def processTarget(target, filename, spec_urls, http, path): + try: + if not('__compat' in target): + return target + target_data = target['__compat'] + if not('mdn_url' in target_data): + if '_' not in path: + alarm('%s in %s has no mdn_url' % (path, filename)) + return target + if target_data['status']['deprecated']: + return target + if 'specs' in target_data: + if not(len(sys.argv) > 1 and sys.argv[1] == 'fullupdate'): + return target + mdn_url = target_data['mdn_url'] + specs = getSpecsArray(mdn_url, 'Specifications', spec_urls, http) + if not(specs): + specs = getSpecsArray(mdn_url, 'Specification', spec_urls, http) + if not(specs): + return target + target['__compat']['specs'] = specs + except TypeError: + pass + return target + + +def main(): + http = urllib3.PoolManager(cert_reqs='CERT_REQUIRED', + ca_certs=certifi.where()) + response = http.request('GET', 'https://raw.githubusercontent.com/mdn/' + + 'kumascript/master/macros/SpecData.json') + spec_data = json.loads(response.data, object_pairs_hook=OrderedDict) + spec_urls = {} + for spec_name in spec_data: + url = spec_data[spec_name]['url'] + spec_urls[url] = {} + spec_urls[url]['name'] = spec_name + dirnames = \ + [ + 'api', + 'css', + 'html', + 'http', + 'javascript', + 'mathml', + 'svg', + 'webdriver', + 'xpath', + 'xslt' + ] + for dirname in dirnames: + files = [os.path.join(dirpath, filename) + for (dirpath, dirs, files) + in os.walk(dirname) + for filename in (dirs + files)] + files.sort() + for filename in files: + if os.path.splitext(filename)[1] != '.json': + continue + f = io.open(filename, 'r+', encoding='utf-8') + bcd_data = json.load(f, object_pairs_hook=OrderedDict) + for sectionname in bcd_data: + for basename in bcd_data[sectionname]: + basedata = bcd_data[sectionname][basename] + path = '%s.%s' % (sectionname, basename) + path = sectionname + '.' + basename + bcd_data[sectionname][basename] = \ + processTarget(basedata, filename, spec_urls, http, path) + if basedata: + walkBaseData(basedata, filename, spec_urls, http, + basename, sectionname, bcd_data) + f.seek(0) + f.write(unicode(json.dumps(bcd_data, indent=2, + separators=(',', ': '), + ensure_ascii=False) + '\n')) + f.truncate() + f.close() + + +main() diff --git a/api/AbortController.json b/api/AbortController.json index 1b5a60a6572dd1..3125d3be610661 100644 --- a/api/AbortController.json +++ b/api/AbortController.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-abortcontroller" + } + ] }, "AbortController": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-abortcontroller-abortcontroller" + } + ] } }, "signal": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-abortcontroller-signal" + } + ] } }, "abort": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-abortcontroller-abort" + } + ] } } } diff --git a/api/AbortSignal.json b/api/AbortSignal.json index 4db96ce42ed4a8..1952ed1a605d54 100644 --- a/api/AbortSignal.json +++ b/api/AbortSignal.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-AbortSignal" + } + ] }, "aborted": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-abortsignal-onabort" + } + ] } }, "onabort": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-abortsignal-aborted" + } + ] } } } diff --git a/api/AbsoluteOrientationSensor.json b/api/AbsoluteOrientationSensor.json index 27d25f45196fd6..743edb2323019b 100644 --- a/api/AbsoluteOrientationSensor.json +++ b/api/AbsoluteOrientationSensor.json @@ -39,7 +39,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Orientation Sensor", + "url": "https://www.w3.org/TR/orientation-sensor/#absoluteorientationsensor-interface" + } + ] }, "AbsoluteOrientationSensor": { "__compat": { @@ -81,7 +87,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Orientation Sensor", + "url": "https://www.w3.org/TR/orientation-sensor/#dom-absoluteorientationsensor-absoluteorientationsensor" + } + ] } } } diff --git a/api/AbstractWorker.json b/api/AbstractWorker.json index 2d007216aa1ef3..3caf2c556caa76 100644 --- a/api/AbstractWorker.json +++ b/api/AbstractWorker.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#abstractworker" + } + ] }, "onerror": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-abstractworker-onerror" + } + ] } } } diff --git a/api/Accelerometer.json b/api/Accelerometer.json index 6df2247e26da5c..09fd02d619707c 100644 --- a/api/Accelerometer.json +++ b/api/Accelerometer.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#accelerometer-interface" + } + ] }, "Accelerometer": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#accelerometer" + } + ] } }, "x": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#accelerometer-x" + } + ] } }, "y": { @@ -201,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#accelerometer-y" + } + ] } }, "z": { @@ -252,7 +276,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#accelerometer-z" + } + ] } } } diff --git a/api/AmbientLightSensor.json b/api/AmbientLightSensor.json index 7e587f471d845c..8f246328c5d34d 100644 --- a/api/AmbientLightSensor.json +++ b/api/AmbientLightSensor.json @@ -57,7 +57,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "AmbientLight", + "url": "https://w3c.github.io/ambient-light/#ambient-light-sensor-interface" + } + ] }, "AmbientLightSensor": { "__compat": { @@ -117,7 +123,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "AmbientLight", + "url": "https://w3c.github.io/ambient-light/#dom-ambientlightsensor-ambientlightsensor" + } + ] } }, "illuminance": { @@ -177,7 +189,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "AmbientLight", + "url": "https://w3c.github.io/ambient-light/#ambient-light-sensor-reading-attribute" + } + ] } } } diff --git a/api/AnalyserNode.json b/api/AnalyserNode.json index 8b4ef6987e062b..143d74b1f345e1 100644 --- a/api/AnalyserNode.json +++ b/api/AnalyserNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-analysernode-interface" + } + ] }, "AnalyserNode": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-analysernode" + } + ] } }, "fftSize": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-analysernode-fftsize" + } + ] } }, "frequencyBinCount": { @@ -201,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-analysernode-frequencybincount" + } + ] } }, "minDecibels": { @@ -252,7 +276,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AnalyserNode-minDecibels" + } + ] } }, "maxDecibels": { @@ -303,7 +333,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-analysernode-maxdecibels" + } + ] } }, "smoothingTimeConstant": { @@ -354,7 +390,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AnalyserNode-smoothingTimeConstant" + } + ] } }, "getFloatFrequencyData": { @@ -405,7 +447,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AnalyserNode-getFloatFrequencyData-void-Float32Array-array" + } + ] } }, "getByteFrequencyData": { @@ -456,7 +504,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AnalyserNode-getByteFrequencyData-void-Uint8Array-array" + } + ] } }, "getFloatTimeDomainData": { @@ -507,7 +561,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AnalyserNode-getFloatTimeDomainData-void-Float32Array-array" + } + ] } }, "getByteTimeDomainData": { @@ -558,7 +618,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AnalyserNode-getByteTimeDomainData-void-Uint8Array-array" + } + ] } } } diff --git a/api/Animation.json b/api/Animation.json index bd3567fa405801..eaaf2253aa66a6 100644 --- a/api/Animation.json +++ b/api/Animation.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#the-animation-interface" + } + ] }, "Animation": { "__compat": { @@ -146,7 +152,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-animation" + } + ] } }, "cancel": { @@ -223,7 +235,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-cancel" + } + ] } }, "currentTime": { @@ -300,7 +318,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-currenttime" + } + ] } }, "effect": { @@ -454,7 +478,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-finish" + } + ] } }, "finished": { @@ -529,7 +559,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-finished" + } + ] } }, "id": { @@ -606,7 +642,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-id" + } + ] } }, "oncancel": { @@ -683,7 +725,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-oncancel" + } + ] } }, "onfinish": { @@ -760,7 +808,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-onfinish" + } + ] } }, "pause": { @@ -837,7 +891,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-pause" + } + ] } }, "pending": { @@ -890,7 +950,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-currenttime" + } + ] } }, "play": { @@ -967,7 +1033,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-play" + } + ] } }, "playbackRate": { @@ -1044,7 +1116,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-playbackrate" + } + ] } }, "playState": { @@ -1128,7 +1206,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#play-state" + } + ] } }, "ready": { @@ -1203,7 +1287,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-ready" + } + ] } }, "reverse": { @@ -1280,7 +1370,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-reverse" + } + ] } }, "startTime": { @@ -1357,7 +1453,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-starttime" + } + ] } }, "timeline": { @@ -1450,7 +1552,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-timeline" + } + ] } }, "updatePlaybackRate": { @@ -1501,7 +1609,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animation-updatePlaybackRate" + } + ] } } } diff --git a/api/AnimationEffect.json b/api/AnimationEffect.json index 4ae6186f12af2c..cfe1f77597ba8d 100644 --- a/api/AnimationEffect.json +++ b/api/AnimationEffect.json @@ -62,7 +62,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#the-animationeffect-interface" + } + ] }, "getComputedTiming": { "__compat": { @@ -112,7 +118,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animationeffect-getcomputedtiming" + } + ] } }, "getTiming": { @@ -163,7 +175,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animationeffect-gettiming" + } + ] } }, "updateTiming": { @@ -214,7 +232,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animationeffect-updatetiming" + } + ] } } } diff --git a/api/AnimationEvent.json b/api/AnimationEvent.json index f2de67cd1bc114..a6f631f22ad69f 100644 --- a/api/AnimationEvent.json +++ b/api/AnimationEvent.json @@ -94,7 +94,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#interface-animationevent" + } + ] }, "AnimationEvent": { "__compat": { @@ -159,7 +165,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#AnimationEvent-interface" + } + ] } }, "animationName": { @@ -225,7 +237,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#AnimationEvent-animationName" + } + ] } }, "elapsedTime": { @@ -276,7 +294,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#AnimationEvent-elapsedTime" + } + ] } }, "initAnimationEvent": { @@ -381,7 +405,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#AnimationEvent-pseudoElement" + } + ] } } } diff --git a/api/AnimationPlaybackEvent.json b/api/AnimationPlaybackEvent.json index 04e99e2f340608..ba88393760d02a 100644 --- a/api/AnimationPlaybackEvent.json +++ b/api/AnimationPlaybackEvent.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#the-animationplaybackevent-interface" + } + ] }, "AnimationPlaybackEvent": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animationplaybackevent-animationplaybackevent" + } + ] } }, "currentTime": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animationplaybackevent-currenttime" + } + ] } }, "timelineTime": { @@ -200,7 +218,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animationplaybackevent-timelinetime" + } + ] } } } diff --git a/api/AnimationTimeline.json b/api/AnimationTimeline.json index e04e9369791c68..d8786adc93a6c5 100644 --- a/api/AnimationTimeline.json +++ b/api/AnimationTimeline.json @@ -88,7 +88,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#the-animationtimeline-interface" + } + ] }, "currentTime": { "__compat": { @@ -178,7 +184,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-animationtimeline-currenttime" + } + ] } } } diff --git a/api/Attr.json b/api/Attr.json index c386f9191f42d5..bc05bbc1440dc6 100644 --- a/api/Attr.json +++ b/api/Attr.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-attr" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#interface-attr" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-637646024" + } + ] }, "localName": { "__compat": { @@ -91,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-attr-localname" + } + ] } }, "namespaceURI": { @@ -133,7 +153,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-element-namespaceuri" + } + ] } }, "prefix": { @@ -178,7 +204,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-attr-prefix" + } + ] } } } diff --git a/api/AudioBuffer.json b/api/AudioBuffer.json index 106831e741c9b6..c3b495141207a8 100644 --- a/api/AudioBuffer.json +++ b/api/AudioBuffer.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-audiobuffer-interface" + } + ] }, "AudioBuffer": { "__compat": { @@ -104,7 +110,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#AudioBuffer" + } + ] } }, "duration": { @@ -155,7 +167,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBuffer-duration" + } + ] } }, "length": { @@ -206,7 +224,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBuffer-length" + } + ] } }, "numberOfChannels": { @@ -257,7 +281,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBuffer-numberOfChannels" + } + ] } }, "sampleRate": { @@ -308,7 +338,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBuffer-sampleRate" + } + ] } }, "copyFromChannel": { @@ -359,7 +395,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBuffer-copyFromChannel-void-Float32Array-destination-long-channelNumber-unsigned-long-startInChannel" + } + ] } }, "copyToChannel": { @@ -410,7 +452,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBuffer-copyToChannel-void-Float32Array-source-long-channelNumber-unsigned-long-startInChannel" + } + ] } }, "getChannelData": { @@ -461,7 +509,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-getchanneldata" + } + ] } } } diff --git a/api/AudioBufferSourceNode.json b/api/AudioBufferSourceNode.json index 547e08243a5681..88e7ddc4c3e390 100644 --- a/api/AudioBufferSourceNode.json +++ b/api/AudioBufferSourceNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-audiobuffersourcenode-interface" + } + ] }, "AudioBufferSourceNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode" + } + ] } }, "buffer": { @@ -155,7 +167,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBufferSourceNode-buffer" + } + ] } }, "detune": { @@ -206,7 +224,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-detune" + } + ] } }, "loop": { @@ -257,7 +281,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBufferSourceNode-loop" + } + ] } }, "loopStart": { @@ -308,7 +338,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBufferSourceNode-loopStart" + } + ] } }, "loopEnd": { @@ -359,7 +395,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBufferSourceNode-loopEnd" + } + ] } }, "onended": { @@ -412,7 +454,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#idl-def-AudioScheduledSourceNode" + } + ] } }, "playbackRate": { @@ -463,7 +511,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBufferSourceNode-playbackRate" + } + ] } }, "start": { @@ -515,7 +569,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioBufferSourceNode-start-void-double-when-double-offset-double-duration" + } + ] } }, "stop": { diff --git a/api/AudioContext.json b/api/AudioContext.json index 708bfb030e0d09..b404bb51e797ec 100644 --- a/api/AudioContext.json +++ b/api/AudioContext.json @@ -84,7 +84,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#AudioContext" + } + ] }, "AudioContext": { "__compat": { @@ -147,7 +153,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-audiocontext" + } + ] }, "latencyHint": { "__compat": { @@ -307,7 +319,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-baselatency" + } + ] } }, "outputLatency": { @@ -358,7 +376,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-outputlatency" + } + ] } }, "close": { @@ -409,7 +433,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioContext-close-Promise-void" + } + ] } }, "createMediaElementSource": { @@ -460,7 +490,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioContext-createMediaElementSource-MediaElementAudioSourceNode-HTMLMediaElement-mediaElement" + } + ] } }, "createMediaStreamSource": { @@ -511,7 +547,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioContext-createMediaStreamSource-MediaStreamAudioSourceNode-MediaStream-mediaStream" + } + ] } }, "createMediaStreamDestination": { @@ -562,7 +604,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioContext-createMediaStreamDestination-MediaStreamAudioDestinationNode" + } + ] } }, "createMediaStreamTrackSource": { @@ -613,7 +661,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamtracksource" + } + ] } }, "getOutputTimestamp": { @@ -664,7 +718,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioContext-getOutputTimestamp-AudioTimestamp" + } + ] } }, "suspend": { @@ -715,7 +775,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioContext-suspend-Promise-void" + } + ] } } } diff --git a/api/AudioContextOptions.json b/api/AudioContextOptions.json index ca33d38d7af48a..8180902829d164 100644 --- a/api/AudioContextOptions.json +++ b/api/AudioContextOptions.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#AudioContextOptions" + } + ] }, "latencyHint": { "__compat": { @@ -95,7 +101,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-latencyhint" + } + ] } }, "sampleRate": { @@ -147,7 +159,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-samplerate" + } + ] } } } diff --git a/api/AudioDestinationNode.json b/api/AudioDestinationNode.json index fc7d82e6984ec3..efef207c5d828d 100644 --- a/api/AudioDestinationNode.json +++ b/api/AudioDestinationNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-audiodestinationnode-interface" + } + ] }, "maxChannelCount": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioDestinationNode-maxChannelCount" + } + ] } } } diff --git a/api/AudioListener.json b/api/AudioListener.json index 49b9115f8a6c66..4be83b5a9c5fa0 100644 --- a/api/AudioListener.json +++ b/api/AudioListener.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": true - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#audiolistener" + } + ] }, "dopplerFactor": { "__compat": { @@ -158,7 +164,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioListener-forwardX" + } + ] } }, "forwardY": { @@ -211,7 +223,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioListener-forwardY" + } + ] } }, "forwardZ": { @@ -264,7 +282,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioListener-forwardZ" + } + ] } }, "positionX": { @@ -317,7 +341,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioListener-positionX" + } + ] } }, "positionY": { @@ -370,7 +400,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioListener-positionY" + } + ] } }, "positionZ": { @@ -423,7 +459,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioListener-positionZ" + } + ] } }, "speedOfSound": { @@ -534,7 +576,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioListener-upX" + } + ] } }, "upY": { @@ -587,7 +635,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioListener-upY" + } + ] } }, "upZ": { @@ -640,7 +694,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioListener-upZ" + } + ] } }, "setOrientation": { diff --git a/api/AudioNode.json b/api/AudioNode.json index 6979be9a3965e0..3307eaab02bf53 100644 --- a/api/AudioNode.json +++ b/api/AudioNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-audionode-interface" + } + ] }, "channelCount": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioNode-channelCount" + } + ] } }, "channelCountMode": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioNode-channelCount" + } + ] } }, "channelInterpretation": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioNode-channelInterpretation" + } + ] } }, "context": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioNode-context" + } + ] } }, "numberOfInputs": { @@ -302,7 +332,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioNode-numberOfInputs" + } + ] } }, "numberOfOutputs": { @@ -353,7 +389,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioNode-numberOfOutputs" + } + ] } }, "connect": { @@ -404,7 +446,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioNode-connect-AudioNode-AudioNode-destination-unsigned-long-output-unsigned-long-input" + }, + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioNode-connect-void-AudioParam-destination-unsigned-long-output" + } + ] } }, "disconnect": { @@ -455,7 +507,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioNode-disconnect-void" + } + ] }, "destination": { "__compat": { diff --git a/api/AudioNodeOptions.json b/api/AudioNodeOptions.json index 50c070c2156b4e..6cdf8c0066c55e 100644 --- a/api/AudioNodeOptions.json +++ b/api/AudioNodeOptions.json @@ -39,9 +39,14 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#audionodeoptions" + } + ] } } } } - diff --git a/api/AudioParam.json b/api/AudioParam.json index 4e874a72dfb3ea..a88ed86f838136 100644 --- a/api/AudioParam.json +++ b/api/AudioParam.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#AudioParam" + } + ] }, "defaultValue": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audioparam-defaultvalue" + } + ] } }, "maxValue": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audioparam-maxvalue" + } + ] } }, "minValue": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audioparam-minvalue" + } + ] } }, "value": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audioparam-value" + } + ] } }, "cancelAndHoldAtTime": { @@ -337,7 +367,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioParam-cancelAndHoldAtTime-AudioParam-double-cancelTime" + } + ] } }, "cancelScheduledValues": { @@ -388,7 +424,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioParam-cancelScheduledValues-void-double-startTime" + } + ] } }, "exponentialRampToValueAtTime": { @@ -439,7 +481,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioParam-exponentialRampToValueAtTime-void-float-value-double-endTime" + } + ] } }, "linearRampToValueAtTime": { @@ -490,7 +538,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-AudioParam-linearRampToValueAtTime-void-float-value-double-endTime" + } + ] } }, "setTargetAtTime": { @@ -541,7 +595,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime" + } + ] } }, "setValueAtTime": { @@ -592,7 +652,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime" + } + ] } }, "setValueCurveAtTime": { @@ -643,7 +709,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime" + } + ] } } } diff --git a/api/AudioScheduledSourceNode.json b/api/AudioScheduledSourceNode.json index aceb5d01e717d4..ff4eb3b3a3a500 100644 --- a/api/AudioScheduledSourceNode.json +++ b/api/AudioScheduledSourceNode.json @@ -97,7 +97,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#idl-def-AudioScheduledSourceNode" + } + ] }, "onended": { "__compat": { @@ -168,7 +174,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#idl-def-AudioScheduledSourceNode" + } + ] } }, "start": { diff --git a/api/AudioTrack.json b/api/AudioTrack.json index 6690182cbc95e6..b201df5040d3ac 100644 --- a/api/AudioTrack.json +++ b/api/AudioTrack.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/media.html#audiotrack" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#audiotrack" + } + ] }, "enabled": { "__compat": { @@ -98,7 +108,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/media.html#dom-audiotrack-enabled" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/semantics-embedded-content.html#dom-audiotrack-enabled" + } + ] } }, "id": { @@ -149,7 +169,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/media.html#dom-audiotrack-id" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/semantics-embedded-content.html#dom-audiotrack-id" + } + ] } }, "kind": { @@ -200,7 +230,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/media.html#dom-audiotrack-kind" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/semantics-embedded-content.html#dom-audiotrack-kind" + } + ] } }, "label": { @@ -251,7 +291,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/media.html#dom-audiotrack-label" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/semantics-embedded-content.html#dom-audiotrack-label" + } + ] } }, "language": { @@ -302,7 +352,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/media.html#dom-audiotrack-language" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/semantics-embedded-content.html#dom-audiotrack-language" + } + ] } }, "sourceBuffer": { @@ -353,7 +413,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#dom-audiotrack-sourcebuffer" + } + ] } } } diff --git a/api/AudioTrackList.json b/api/AudioTrackList.json index 9a9b08210a3b2d..9e52aa5046628d 100644 --- a/api/AudioTrackList.json +++ b/api/AudioTrackList.json @@ -90,7 +90,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/media.html#audiotracklist" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#audiotracklist" + } + ] }, "getTrackById": { "__compat": { @@ -182,7 +192,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-audiotracklist-gettrackbyid" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-audiotracklist-getTrackById" + } + ] } }, "length": { @@ -275,7 +295,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/media.html#dom-audiotracklist-length" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-audiotracklist-length" + } + ] } }, "onaddtrack": { @@ -368,7 +398,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-tracklist-onaddtrack" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-audiotracklist-onaddtrack" + } + ] } }, "onchange": { @@ -461,7 +501,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-tracklist-onchange" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-audiotracklist-onchange" + } + ] } }, "onremovetrack": { @@ -554,7 +604,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-tracklist-onremovetrack" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-audiotracklist-onremovetrack" + } + ] } } } diff --git a/api/BaseAudioContext.json b/api/BaseAudioContext.json index 2821f07cd19f30..7610022647493b 100644 --- a/api/BaseAudioContext.json +++ b/api/BaseAudioContext.json @@ -55,7 +55,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#BaseAudioContext" + } + ] }, "audioWorklet": { "__compat": { @@ -164,7 +170,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createanalyser" + } + ] } }, "createBiquadFilter": { @@ -223,7 +235,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbiquadfilter" + } + ] } }, "createBuffer": { @@ -282,7 +300,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer" + } + ] } }, "createBufferSource": { @@ -341,7 +365,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffersource" + } + ] } }, "createChannelMerger": { @@ -400,7 +430,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createchannelmerger" + } + ] } }, "createChannelSplitter": { @@ -459,7 +495,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createchannelsplitter" + } + ] } }, "createConstantSource": { @@ -510,7 +552,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createconstantsource" + } + ] }, "implemented_on_audio_context": { "__compat": { @@ -628,7 +676,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createconvolver" + } + ] } }, "createDelay": { @@ -687,7 +741,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createdelay" + } + ] } }, "createDynamicsCompressor": { @@ -746,7 +806,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createdynamicscompressor" + } + ] } }, "createGain": { @@ -805,7 +871,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-creategain" + } + ] } }, "createIIRFilter": { @@ -915,7 +987,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createoscillator" + } + ] } }, "createPanner": { @@ -974,7 +1052,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createpanner" + } + ] } }, "createPeriodicWave": { @@ -1062,7 +1146,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave" + } + ] }, "disableNormalisation_supported": { "__compat": { @@ -1172,7 +1262,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createscriptprocessor" + } + ] } }, "createStereoPanner": { @@ -1223,7 +1319,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createstereopanner" + } + ] } }, "createWaveShaper": { @@ -1282,7 +1384,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createwaveshaper" + } + ] } }, "currentTime": { @@ -1341,7 +1449,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-currenttime" + } + ] } }, "decodeAudioData": { @@ -1400,7 +1514,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata" + } + ] }, "promise_syntax": { "__compat": { @@ -1510,7 +1630,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-destination" + } + ] } }, "listener": { @@ -1569,7 +1695,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-listener" + } + ] } }, "onstatechange": { @@ -1620,7 +1752,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-onstatechange" + } + ] } }, "resume": { @@ -1671,7 +1809,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-resume" + } + ] } }, "sampleRate": { @@ -1730,7 +1874,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-samplerate" + } + ] } }, "state": { @@ -1781,7 +1931,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-state" + } + ] } } } diff --git a/api/BasicCardRequest.json b/api/BasicCardRequest.json index 76675c18a4df87..45920368b032fa 100644 --- a/api/BasicCardRequest.json +++ b/api/BasicCardRequest.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Basic Card Payment", + "url": "https://w3c.github.io/payment-method-basic-card/#basiccardrequest-dictionary" + } + ] }, "supportedNetworks": { "__compat": { @@ -126,7 +132,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Basic Card Payment", + "url": "https://w3c.github.io/payment-method-basic-card/#dom-basiccardrequest-supportednetworks" + } + ] } }, "supportedTypes": { @@ -191,7 +203,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Basic Card Payment", + "url": "https://w3c.github.io/payment-method-basic-card/#dom-basiccardrequest-supportedtypes" + } + ] } } } diff --git a/api/BasicCardResponse.json b/api/BasicCardResponse.json index 4774999467e1c3..dced8a4cfd8d35 100644 --- a/api/BasicCardResponse.json +++ b/api/BasicCardResponse.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Basic Card Payment", + "url": "https://w3c.github.io/payment-method-basic-card/#basiccardresponse-dictionary" + } + ] }, "cardNumber": { "__compat": { @@ -126,7 +132,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Basic Card Payment", + "url": "https://w3c.github.io/payment-method-basic-card/#dom-basiccardresponse-cardnumber" + } + ] } }, "cardholderName": { @@ -191,7 +203,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Basic Card Payment", + "url": "https://w3c.github.io/payment-method-basic-card/#dom-basiccardresponse-cardholdername" + } + ] } }, "cardSecurityCode": { @@ -256,7 +274,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Basic Card Payment", + "url": "https://w3c.github.io/payment-method-basic-card/#dom-basiccardresponse-cardsecuritycode" + } + ] } }, "expiryMonth": { @@ -321,7 +345,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Basic Card Payment", + "url": "https://w3c.github.io/payment-method-basic-card/#dom-basiccardresponse-expirymonth" + } + ] } }, "expiryYear": { @@ -386,7 +416,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Basic Card Payment", + "url": "https://w3c.github.io/payment-method-basic-card/#dom-basiccardresponse-expiryyear" + } + ] } }, "billingAddress": { @@ -451,7 +487,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Basic Card Payment", + "url": "https://w3c.github.io/payment-method-basic-card/#dom-basiccardresponse-billingaddress" + } + ] } } } diff --git a/api/BeforeInstallPromptEvent.json b/api/BeforeInstallPromptEvent.json index bbd9e173c893ed..d94fb0411a36bf 100644 --- a/api/BeforeInstallPromptEvent.json +++ b/api/BeforeInstallPromptEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Manifest", + "url": "https://w3c.github.io/manifest/#beforeinstallpromptevent-interface" + } + ] }, "BeforeInstallPromptEvent": { "__compat": { diff --git a/api/BiquadFilterNode.json b/api/BiquadFilterNode.json index 5815978b43b203..c0d2834bcf5f4b 100644 --- a/api/BiquadFilterNode.json +++ b/api/BiquadFilterNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-biquadfilternode-interface" + } + ] }, "BiquadFilterNode": { "__compat": { @@ -104,7 +110,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-biquadfilternode-interface" + } + ] } }, "detune": { @@ -155,7 +167,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-BiquadFilterNode-detune" + } + ] } }, "frequency": { @@ -206,7 +224,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-BiquadFilterNode-frequency" + } + ] } }, "gain": { @@ -257,7 +281,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-BiquadFilterNode-gain" + } + ] } }, "Q": { @@ -308,7 +338,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-BiquadFilterNode-Q" + } + ] } }, "type": { @@ -359,7 +395,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-BiquadFilterNode-type" + } + ] } }, "getFrequencyResponse": { diff --git a/api/Blob.json b/api/Blob.json index c02d7d63dfa686..2df0a0abf4242f 100644 --- a/api/Blob.json +++ b/api/Blob.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#blob" + } + ] }, "Blob": { "__compat": { @@ -101,7 +107,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#constructorBlob" + } + ] } }, "size": { @@ -152,7 +164,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#dfn-size" + } + ] } }, "type": { @@ -203,7 +221,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#dfn-type" + } + ] } }, "slice": { @@ -270,7 +294,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#dfn-slice" + } + ] } } } diff --git a/api/BlobEvent.json b/api/BlobEvent.json index 12c7a2434f827d..470d348599164a 100644 --- a/api/BlobEvent.json +++ b/api/BlobEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#blob-event" + } + ] }, "BlobEvent": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#blob-event" + } + ] } }, "data": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-BlobEvent-data" + } + ] } }, "timecode": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#dom-blobevent-timecode" + } + ] } } } diff --git a/api/Bluetooth.json b/api/Bluetooth.json index 4ae7ff07b6c559..9f9d40ec5eab77 100644 --- a/api/Bluetooth.json +++ b/api/Bluetooth.json @@ -81,7 +81,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetooth" + } + ] }, "getAvailability": { "__compat": { @@ -416,7 +422,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetooth-requestdevice" + } + ] } } } diff --git a/api/BluetoothCharacteristicProperties.json b/api/BluetoothCharacteristicProperties.json index 27dd136958f4a3..fc34cc388bd780 100644 --- a/api/BluetoothCharacteristicProperties.json +++ b/api/BluetoothCharacteristicProperties.json @@ -63,7 +63,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#characteristicproperties" + } + ] }, "broadcast": { "__compat": { diff --git a/api/BluetoothDevice.json b/api/BluetoothDevice.json index 2d8b119d9710e9..076190021e9c9e 100644 --- a/api/BluetoothDevice.json +++ b/api/BluetoothDevice.json @@ -53,7 +53,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetoothdevice" + } + ] }, "adData": { "__compat": { @@ -255,7 +261,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-gatt" + } + ] } }, "gattServer": { @@ -361,7 +373,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-id" + } + ] } }, "name": { @@ -417,7 +435,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-name" + } + ] } }, "paired": { @@ -679,7 +703,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-uuids" + } + ] } }, "vendorID": { diff --git a/api/BluetoothRemoteGATTCharacteristic.json b/api/BluetoothRemoteGATTCharacteristic.json index bf468518097062..726eaac6b7ae55 100644 --- a/api/BluetoothRemoteGATTCharacteristic.json +++ b/api/BluetoothRemoteGATTCharacteristic.json @@ -81,7 +81,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetoothremotegattcharacteristic" + } + ] }, "getDescriptor": { "__compat": { @@ -164,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattcharacteristic-getdescriptor" + } + ] } }, "getDescriptors": { @@ -248,7 +260,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattcharacteristic-getdescriptors" + } + ] } }, "properties": { @@ -332,7 +350,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattcharacteristic-properties" + } + ] } }, "readValue": { @@ -416,7 +440,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattcharacteristic-readvalue" + } + ] } }, "service": { @@ -500,7 +530,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattcharacteristic-service" + } + ] } }, "startNotifications": { @@ -584,7 +620,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattcharacteristic-startnotifications" + } + ] } }, "stopNotifications": { @@ -668,7 +710,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattcharacteristic-stopnotifications" + } + ] } }, "uuid": { @@ -752,7 +800,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattcharacteristic-uuid" + } + ] } }, "value": { @@ -836,7 +890,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattcharacteristic-value" + } + ] } }, "writeValue": { @@ -920,7 +980,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattcharacteristic-writevalue" + } + ] } } } diff --git a/api/BluetoothRemoteGATTDescriptor.json b/api/BluetoothRemoteGATTDescriptor.json index 91887021f1da72..f72a43ff5f9ef5 100644 --- a/api/BluetoothRemoteGATTDescriptor.json +++ b/api/BluetoothRemoteGATTDescriptor.json @@ -81,7 +81,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetoothremotegattdescriptor" + } + ] }, "characteristic": { "__compat": { @@ -164,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattdescriptor-characteristic" + } + ] } }, "uuid": { @@ -248,7 +260,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattdescriptor-uuid" + } + ] } }, "value": { @@ -332,7 +350,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattdescriptor-value" + } + ] } }, "readValue": { @@ -416,7 +440,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattdescriptor-readvalue" + } + ] } }, "writeValue": { @@ -500,7 +530,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattdescriptor-writevalue" + } + ] } } } diff --git a/api/BluetoothRemoteGATTServer.json b/api/BluetoothRemoteGATTServer.json index 0c917c6f6b3878..4e8b003c77236c 100644 --- a/api/BluetoothRemoteGATTServer.json +++ b/api/BluetoothRemoteGATTServer.json @@ -81,7 +81,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetoothremotegattserver" + } + ] }, "connect": { "__compat": { @@ -164,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattserver-connect" + } + ] } }, "connected": { @@ -248,7 +260,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattremoteserver-connected" + } + ] } }, "device": { @@ -332,7 +350,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattremoteserver-device" + } + ] } }, "disconnect": { @@ -416,7 +440,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattremoteserver-disconnect" + } + ] } }, "getPrimaryService": { @@ -500,7 +530,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattremoteserver-getprimaryservice" + } + ] } }, "getPrimaryServices": { @@ -584,7 +620,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattremoteserver-getprimaryservices" + } + ] } } } diff --git a/api/BluetoothRemoteGATTService.json b/api/BluetoothRemoteGATTService.json index 09cc5b2a2fb79e..c17cb1052c962f 100644 --- a/api/BluetoothRemoteGATTService.json +++ b/api/BluetoothRemoteGATTService.json @@ -84,7 +84,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#bluetoothremotegattservice" + } + ] }, "device": { "__compat": { @@ -152,7 +158,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattservice-device" + } + ] } }, "getCharacteristic": { @@ -239,7 +251,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattservice-getcharacteristic" + } + ] } }, "getCharacteristics": { @@ -290,7 +308,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattservice-getcharacteristics" + } + ] } }, "getIncludedService": { @@ -341,7 +365,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattservice-getincludedservice" + } + ] } }, "getIncludedServices": { @@ -428,7 +458,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattservice-getincludedservices" + } + ] } }, "isPrimary": { @@ -479,7 +515,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattservice-isprimary" + } + ] } }, "uuid": { @@ -566,7 +608,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Bluetooth", + "url": "https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothgattservice-uuid" + } + ] } } } diff --git a/api/Body.json b/api/Body.json index 2fa6a315713668..27c2b2f5035aa8 100644 --- a/api/Body.json +++ b/api/Body.json @@ -67,7 +67,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#body-mixin" + } + ] }, "body": { "__compat": { @@ -137,7 +143,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-body-body" + } + ] } }, "bodyUsed": { @@ -221,7 +233,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-body-bodyused" + } + ] } }, "arrayBuffer": { @@ -305,7 +323,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-body-arraybuffer" + } + ] } }, "blob": { @@ -389,7 +413,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-body-blob" + } + ] } }, "formData": { @@ -451,7 +481,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-body-formdata" + } + ] } }, "json": { @@ -535,7 +571,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-body-json" + } + ] } }, "text": { @@ -619,7 +661,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-body-text" + } + ] } } } diff --git a/api/BroadcastChannel.json b/api/BroadcastChannel.json index 36d9d4cf598787..9cebb1280dafac 100644 --- a/api/BroadcastChannel.json +++ b/api/BroadcastChannel.json @@ -39,7 +39,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#broadcastchannel" + } + ] }, "BroadcastChannel": { "__compat": { @@ -81,7 +87,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#dom-broadcastchannel" + } + ] } }, "name": { @@ -123,7 +135,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#dom-broadcastchannel-name" + } + ] } }, "onmessage": { @@ -165,7 +183,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#handler-broadcastchannel-onmessage" + } + ] } }, "onmessageerror": { @@ -207,7 +231,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-broadcastchannel-onmessageerror" + } + ] } }, "close": { @@ -249,7 +279,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#dom-broadcastchannel-close" + } + ] } }, "postMessage": { @@ -291,7 +327,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#dom-broadcastchannel-postmessage" + } + ] } } } diff --git a/api/BudgetService.json b/api/BudgetService.json index a110e29ceebc68..f97afe6357fe64 100644 --- a/api/BudgetService.json +++ b/api/BudgetService.json @@ -27,7 +27,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Budget API", + "url": "https://wicg.github.io/budget-api/#budget-service-interface" + } + ] }, "getBudget": { "__compat": { @@ -56,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Budget API", + "url": "https://wicg.github.io/budget-api/#dom-budgetservice-getbudget" + } + ] } }, "getCost": { @@ -86,7 +98,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Budget API", + "url": "https://wicg.github.io/budget-api/#dom-budgetservice-getcost" + } + ] } }, "reserve": { @@ -116,7 +134,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Budget API", + "url": "https://wicg.github.io/budget-api/#dom-budgetservice-reserve" + } + ] } } } diff --git a/api/BudgetState.json b/api/BudgetState.json index 3266c5948ad4fa..cee141bcc72e5c 100644 --- a/api/BudgetState.json +++ b/api/BudgetState.json @@ -27,7 +27,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Budget API", + "url": "https://wicg.github.io/budget-api/#budget-state-interface" + } + ] }, "budgetAt": { "__compat": { @@ -56,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Budget API", + "url": "https://wicg.github.io/budget-api/#dom-budgetstate-budgetat" + } + ] } }, "time": { @@ -86,7 +98,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Budget API", + "url": "https://wicg.github.io/budget-api/#dom-budgetstate-time" + } + ] } } } diff --git a/api/ByteLengthQueuingStrategy.json b/api/ByteLengthQueuingStrategy.json index 06b20491b34526..0a072b838f5672 100644 --- a/api/ByteLengthQueuingStrategy.json +++ b/api/ByteLengthQueuingStrategy.json @@ -72,7 +72,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#blqs-class" + } + ] }, "ByteLengthQueuingStrategy": { "__compat": { @@ -147,7 +153,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#blqs-constructor" + } + ] } }, "size": { @@ -222,7 +234,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#blqs-size" + } + ] } } } diff --git a/api/CDATASection.json b/api/CDATASection.json index e8ebb7448f2587..1d7bed0bfe994a 100644 --- a/api/CDATASection.json +++ b/api/CDATASection.json @@ -39,7 +39,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-cdatasection" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#cdatasection" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-667469212" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-667469212" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-667469212" + } + ] } } } diff --git a/api/CSS.json b/api/CSS.json index f15f745ee85ff0..3d286d3bc3434c 100644 --- a/api/CSS.json +++ b/api/CSS.json @@ -70,7 +70,21 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Painting API", + "url": "https://drafts.css-houdini.org/css-paint-api-1/#dom-css-paintworklet" + }, + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#the-css.escape%28%29-method" + }, + { + "name": "CSS3 Conditional", + "url": "https://drafts.csswg.org/css-conditional-3/#the-css-interface" + } + ] }, "ch": { "__compat": { @@ -477,7 +491,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#the-css.escape()-method" + } + ] } }, "ex": { @@ -1621,7 +1641,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Conditional", + "url": "https://drafts.csswg.org/css-conditional-3/#the-css-interface" + } + ] } }, "turn": { diff --git a/api/CSSConditionRule.json b/api/CSSConditionRule.json index b478d14bcfece1..31220fb9568e3f 100644 --- a/api/CSSConditionRule.json +++ b/api/CSSConditionRule.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Conditional", + "url": "https://drafts.csswg.org/css-conditional-3/#the-cssconditionrule-interface" + } + ] } } } diff --git a/api/CSSCounterStyleRule.json b/api/CSSCounterStyleRule.json index 1166cd374fc3bb..f8993974b0533b 100644 --- a/api/CSSCounterStyleRule.json +++ b/api/CSSCounterStyleRule.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#the-csscounterstylerule-interface" + } + ] } } } diff --git a/api/CSSGroupingRule.json b/api/CSSGroupingRule.json index 894fd540397222..fc3d1ad64239c4 100644 --- a/api/CSSGroupingRule.json +++ b/api/CSSGroupingRule.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Conditional", + "url": "https://drafts.csswg.org/css-conditional-3/#the-cssgroupingrule-interface" + } + ] } } } diff --git a/api/CSSImageValue.json b/api/CSSImageValue.json index 12b8d2c75b40f2..ffafac201b40c8 100644 --- a/api/CSSImageValue.json +++ b/api/CSSImageValue.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#imagevalue-objects" + } + ] } } } diff --git a/api/CSSKeyframeRule.json b/api/CSSKeyframeRule.json index 5fef9a93637123..e71bf76993a19e 100644 --- a/api/CSSKeyframeRule.json +++ b/api/CSSKeyframeRule.json @@ -58,7 +58,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#CSSKeyframeRule-interface" + } + ] }, "keyText": { "__compat": { diff --git a/api/CSSKeyframesRule.json b/api/CSSKeyframesRule.json index e86d173a257e39..40e764b258d80e 100644 --- a/api/CSSKeyframesRule.json +++ b/api/CSSKeyframesRule.json @@ -59,7 +59,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#interface-csskeyframesrule" + } + ] }, "appendRule": { "__compat": { diff --git a/api/CSSKeywordValue.json b/api/CSSKeywordValue.json index 8e70309592adff..9af05de79645f1 100644 --- a/api/CSSKeywordValue.json +++ b/api/CSSKeywordValue.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#keywordvalue-objects" + } + ] }, "CSSKeywordValue": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-csskeywordvalue-csskeywordvalue" + } + ] } }, "value": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-csskeywordvalue-value" + } + ] } } } diff --git a/api/CSSMatrix.json b/api/CSSMatrix.json index c32ce589df6daf..dc96058c4f0c30 100644 --- a/api/CSSMatrix.json +++ b/api/CSSMatrix.json @@ -54,7 +54,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Compat", + "url": "https://compat.spec.whatwg.org#webkitcssmatrix-interface" + } + ] } } } diff --git a/api/CSSMediaRule.json b/api/CSSMediaRule.json index 6fe218f37d3eb6..ac8f841cc815c1 100644 --- a/api/CSSMediaRule.json +++ b/api/CSSMediaRule.json @@ -47,7 +47,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Conditional", + "url": "https://drafts.csswg.org/css-conditional-3/#the-cssmediarule-interface" + }, + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#the-cssmediarule-interface" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSMediaRule" + } + ] }, "media": { "__compat": { diff --git a/api/CSSNamespaceRule.json b/api/CSSNamespaceRule.json index d1dba26788c7e2..09bec0e818c6ca 100644 --- a/api/CSSNamespaceRule.json +++ b/api/CSSNamespaceRule.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#the-cssnamespacerule-interface" + } + ] }, "namespaceURI": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssnamespacerule-namespaceuri" + } + ] } }, "prefix": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssnamespacerule-namespaceuri" + } + ] } } } diff --git a/api/CSSPageRule.json b/api/CSSPageRule.json index 76a3a01b55511d..c96d0bd97bf3ff 100644 --- a/api/CSSPageRule.json +++ b/api/CSSPageRule.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#the-csspagerule-interface" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPageRule" + } + ] }, "selectorText": { "__compat": { diff --git a/api/CSSPositionValue.json b/api/CSSPositionValue.json index 128bfad29d15ad..55a927f8c7c37f 100644 --- a/api/CSSPositionValue.json +++ b/api/CSSPositionValue.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#positionvalue-objects" + } + ] }, "CSSPositionValue": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-csspositionvalue-csspositionvalue" + } + ] } }, "x": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-csspositionvalue-x" + } + ] } }, "y": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-csspositionvalue-x" + } + ] } } } diff --git a/api/CSSRule.json b/api/CSSRule.json index 43b7cd1910c235..bfe924d9c8a33c 100644 --- a/api/CSSRule.json +++ b/api/CSSRule.json @@ -45,7 +45,33 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#css-rules" + }, + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#interface-cssrule" + }, + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#om-fontfeaturevalues" + }, + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#extentions-to-cssrule-interface" + }, + { + "name": "CSS3 Conditional", + "url": "https://drafts.csswg.org/css-conditional-3/#extentions-to-cssrule-interface" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule" + } + ] }, "type": { "__compat": { diff --git a/api/CSSStyleDeclaration.json b/api/CSSStyleDeclaration.json index e02cd33d4a7019..6b883b2f2b096d 100644 --- a/api/CSSStyleDeclaration.json +++ b/api/CSSStyleDeclaration.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#the-cssstyledeclaration-interface" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration" + } + ] }, "cssText": { "__compat": { @@ -140,7 +150,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-length" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration" + } + ] } }, "item": { @@ -188,7 +208,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-item" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration" + } + ] } }, "getPropertyValue": { @@ -236,7 +266,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-getpropertyvalue" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration" + } + ] } }, "getPropertyCSSValue": { @@ -343,7 +383,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-getpropertypriority" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration" + } + ] } }, "setProperty": { @@ -391,7 +441,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-setproperty" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration" + } + ] } }, "removeProperty": { @@ -439,7 +499,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-removeproperty" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration" + } + ] } }, "parentRule": { @@ -487,7 +557,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-parentrule" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration" + } + ] } }, "cssFloat": { diff --git a/api/CSSStyleRule.json b/api/CSSStyleRule.json index 529f67edd3b36a..28141d0ca14514 100644 --- a/api/CSSStyleRule.json +++ b/api/CSSStyleRule.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#the-cssstylerule-interface" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleRule" + } + ] }, "selectorText": { "__compat": { @@ -106,7 +116,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssstylerule-selectortext" + } + ] } }, "style": { diff --git a/api/CSSStyleSheet.json b/api/CSSStyleSheet.json index a7e6cb63b6c45b..fce64eaeb80275 100644 --- a/api/CSSStyleSheet.json +++ b/api/CSSStyleSheet.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#cssstylesheet" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleSheet" + } + ] }, "cssRules": { "__compat": { @@ -188,7 +198,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssstylesheet-deleterule" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleSheet-deleteRule" + } + ] } }, "insertRule": { @@ -236,7 +256,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-cssstylesheet-insertrule" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleSheet-insertRule" + } + ] }, "optional_index": { "__compat": { diff --git a/api/CSSStyleValue.json b/api/CSSStyleValue.json index 979222fb350021..92d092fbca9d53 100644 --- a/api/CSSStyleValue.json +++ b/api/CSSStyleValue.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#stylevalue-objects" + } + ] }, "parse": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-cssstylevalue-parse" + } + ] } }, "parseAll": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-cssstylevalue-parseall" + } + ] } } } diff --git a/api/CSSSupportsRule.json b/api/CSSSupportsRule.json index db1bb194172216..a0937bdf01d6db 100644 --- a/api/CSSSupportsRule.json +++ b/api/CSSSupportsRule.json @@ -61,7 +61,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Conditional", + "url": "https://drafts.csswg.org/css-conditional-3/#the-csssupportsrule-interface" + } + ] } } } diff --git a/api/Cache.json b/api/Cache.json index bbd5d551f9fa40..3f4388fc34071d 100644 --- a/api/Cache.json +++ b/api/Cache.json @@ -56,7 +56,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache" + } + ] }, "add": { "__compat": { @@ -118,7 +124,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache" + } + ] } }, "addAll": { @@ -175,7 +187,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache" + } + ] } }, "delete": { @@ -227,7 +245,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache" + } + ] } }, "keys": { @@ -279,7 +303,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache" + } + ] } }, "match": { @@ -331,7 +361,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache" + } + ] } }, "matchAll": { @@ -384,7 +420,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache" + } + ] } }, "put": { @@ -441,7 +483,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache" + } + ] } } } diff --git a/api/CacheStorage.json b/api/CacheStorage.json index c07f8a60f98eb4..95c6d99ded8330 100644 --- a/api/CacheStorage.json +++ b/api/CacheStorage.json @@ -60,7 +60,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache-storage" + } + ] }, "delete": { "__compat": { @@ -110,7 +116,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache-storage" + } + ] } }, "has": { @@ -161,7 +173,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache-storage" + } + ] } }, "keys": { @@ -212,7 +230,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache-storage" + } + ] } }, "match": { @@ -298,7 +322,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache-storage" + } + ] } }, "open": { @@ -349,7 +379,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#cache-storage" + } + ] } } } diff --git a/api/CanvasCaptureMediaStreamTrack.json b/api/CanvasCaptureMediaStreamTrack.json index d12102bc43f947..c71a96516e1ec6 100644 --- a/api/CanvasCaptureMediaStreamTrack.json +++ b/api/CanvasCaptureMediaStreamTrack.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture DOM Elements", + "url": "https://w3c.github.io/mediacapture-fromelement/#the-canvascapturemediastreamtrack" + } + ] }, "canvas": { "__compat": { @@ -126,7 +132,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture DOM Elements", + "url": "https://w3c.github.io/mediacapture-fromelement/#dom-canvascapturemediastreamtrack-canvas" + } + ] } }, "requestFrame": { @@ -184,7 +196,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture DOM Elements", + "url": "https://w3c.github.io/mediacapture-fromelement/#widl-CanvasCaptureMediaStream-requestFrame-void" + } + ] } } } diff --git a/api/CanvasGradient.json b/api/CanvasGradient.json index 0093c814472463..560743614a2891 100644 --- a/api/CanvasGradient.json +++ b/api/CanvasGradient.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/the-canvas-element.html#canvasgradient" + } + ] }, "addColorStop": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-canvasgradient-addcolorstop" + } + ] } } } diff --git a/api/CanvasPattern.json b/api/CanvasPattern.json index 622290a340ae25..16e8c11aa7055d 100644 --- a/api/CanvasPattern.json +++ b/api/CanvasPattern.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/the-canvas-element.html#canvaspattern" + } + ] }, "setTransform": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-canvaspattern-settransform" + } + ] } } } diff --git a/api/CanvasRenderingContext2D.json b/api/CanvasRenderingContext2D.json index b2bf5b8ad03998..f019b83b1cc006 100644 --- a/api/CanvasRenderingContext2D.json +++ b/api/CanvasRenderingContext2D.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#2dcontext" + } + ] }, "canvas": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-canvas" + } + ] } }, "currentTransform": { @@ -269,7 +281,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-direction" + } + ] } }, "fillStyle": { @@ -320,7 +338,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-fillstyle" + } + ] } }, "filter": { @@ -397,7 +421,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#filters" + } + ] } }, "font": { @@ -448,7 +478,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-font" + } + ] } }, "globalAlpha": { @@ -499,7 +535,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-globalalpha" + } + ] } }, "globalCompositeOperation": { @@ -550,7 +592,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-globalcompositeoperation" + } + ] } }, "imageSmoothingEnabled": { @@ -623,7 +671,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-imagesmoothingenabled" + } + ] } }, "imageSmoothingQuality": { @@ -674,7 +728,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#imagesmoothingquality" + } + ] } }, "lineCap": { @@ -725,7 +785,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-linecap" + } + ] } }, "lineDashOffset": { @@ -788,7 +854,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-linedashoffset" + } + ] } }, "lineJoin": { @@ -839,7 +911,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-linejoin" + } + ] } }, "lineWidth": { @@ -890,7 +968,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-linewidth" + } + ] } }, "miterLimit": { @@ -941,7 +1025,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-miterlimit" + } + ] } }, "shadowBlur": { @@ -992,7 +1082,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-shadowblur" + } + ] } }, "shadowColor": { @@ -1043,7 +1139,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-shadowcolor" + } + ] } }, "shadowOffsetX": { @@ -1094,7 +1196,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-shadowoffsetx" + } + ] } }, "shadowOffsetY": { @@ -1145,7 +1253,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-shadowoffsety" + } + ] } }, "strokeStyle": { @@ -1196,7 +1310,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-strokestyle" + } + ] } }, "textAlign": { @@ -1247,7 +1367,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-textalign" + } + ] } }, "textBaseline": { @@ -1298,7 +1424,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-textbaseline" + } + ] } }, "addHitRegion": { @@ -1711,7 +1843,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-arc" + } + ] } }, "arcTo": { @@ -1762,7 +1900,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-arcto" + } + ] } }, "beginPath": { @@ -1813,7 +1957,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-beginpath" + } + ] } }, "bezierCurveTo": { @@ -1864,7 +2014,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-beziercurveto" + } + ] } }, "clearHitRegions": { @@ -1984,7 +2140,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-clearrect" + } + ] } }, "clip": { @@ -2035,7 +2197,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-clip" + } + ] }, "Path_parameter": { "__compat": { @@ -2137,7 +2305,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-closepath" + } + ] } }, "createImageData": { @@ -2188,7 +2362,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-createimagedata" + } + ] } }, "createLinearGradient": { @@ -2239,7 +2419,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-createlineargradient" + } + ] } }, "createPattern": { @@ -2290,7 +2476,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-createpattern" + } + ] } }, "createRadialGradient": { @@ -2341,7 +2533,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-createradialgradient" + } + ] } }, "drawFocusIfNeeded": { @@ -2422,7 +2620,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-drawfocusifneeded" + } + ] }, "Path_parameter": { "__compat": { @@ -2524,7 +2728,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-drawimage" + } + ] }, "ImageBitmap_source_image": { "__compat": { @@ -2832,7 +3042,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-ellipse" + } + ] } }, "fill": { @@ -2883,7 +3099,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-fill" + } + ] }, "Path_parameter": { "__compat": { @@ -2985,7 +3207,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-fillrect" + } + ] } }, "fillText": { @@ -3036,7 +3264,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-filltext" + } + ] } }, "getImageData": { @@ -3099,7 +3333,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-getimagedata" + } + ] } }, "getLineDash": { @@ -3150,7 +3390,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-getlinedash" + } + ] } }, "isPointInPath": { @@ -3201,7 +3447,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-ispointinpath" + } + ] }, "Path_parameter": { "__compat": { @@ -3303,7 +3555,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-ispointinstroke" + } + ] }, "Path_parameter": { "__compat": { @@ -3405,7 +3663,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-lineto" + } + ] } }, "measureText": { @@ -3456,7 +3720,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-measuretext" + } + ] } }, "moveTo": { @@ -3507,7 +3777,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-moveto" + } + ] } }, "putImageData": { @@ -3558,7 +3834,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-putimagedata" + } + ] } }, "quadraticCurveTo": { @@ -3609,7 +3891,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-quadraticcurveto" + } + ] } }, "rect": { @@ -3660,7 +3948,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-rect" + } + ] } }, "removeHitRegion": { @@ -3780,7 +4074,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-resettransform" + } + ] } }, "restore": { @@ -3831,7 +4131,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-restore" + } + ] } }, "rotate": { @@ -3882,7 +4188,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-rotate" + } + ] } }, "save": { @@ -3933,7 +4245,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-save" + } + ] } }, "scale": { @@ -3984,7 +4302,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-scale" + } + ] } }, "scrollPathIntoView": { @@ -4041,7 +4365,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-scrollpathintoview" + } + ] } }, "setLineDash": { @@ -4092,7 +4422,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-setlinedash" + } + ] } }, "setTransform": { @@ -4143,7 +4479,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-settransform" + } + ] } }, "stroke": { @@ -4194,7 +4536,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-stroke" + } + ] }, "Path_parameter": { "__compat": { @@ -4296,7 +4644,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-strokerect" + } + ] } }, "strokeText": { @@ -4347,7 +4701,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-stroketext" + } + ] } }, "transform": { @@ -4398,7 +4758,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-transform" + } + ] } }, "translate": { @@ -4449,7 +4815,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-context-2d-translate" + } + ] } } } diff --git a/api/CaretPosition.json b/api/CaretPosition.json index 810d88997e4713..7a505949a8e941 100644 --- a/api/CaretPosition.json +++ b/api/CaretPosition.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#caret-position" + } + ] } } } diff --git a/api/ChannelMergerNode.json b/api/ChannelMergerNode.json index cf23371710bd3b..f320b66a76bf04 100644 --- a/api/ChannelMergerNode.json +++ b/api/ChannelMergerNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-channelmergernode-interface" + } + ] }, "ChannelMergerNode": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#idl-def-ChannelMergerNode" + } + ] } } } diff --git a/api/ChannelSplitterNode.json b/api/ChannelSplitterNode.json index 77b7837ff3b91e..17a63352cb70ee 100644 --- a/api/ChannelSplitterNode.json +++ b/api/ChannelSplitterNode.json @@ -53,7 +53,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-channelsplitternode-interface" + } + ] }, "ChannelSplitterNode": { "__compat": { @@ -104,7 +110,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#idl-def-ChannelSplitterNode" + } + ] } } } diff --git a/api/CharacterData.json b/api/CharacterData.json index bcf93b6ed6a2c9..a6c8f5e5cd7479 100644 --- a/api/CharacterData.json +++ b/api/CharacterData.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#characterdata" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-FF21A306" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-FF21A306" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-FF21A306" + } + ] }, "ChildNode": { "__compat": { diff --git a/api/ChildNode.json b/api/ChildNode.json index 0160ad702661a7..310a406034f981 100644 --- a/api/ChildNode.json +++ b/api/ChildNode.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-childnode" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#interface-elementTraversal" + } + ] }, "after": { "__compat": { @@ -98,7 +108,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-childnode-after" + } + ] } }, "before": { @@ -149,7 +165,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-childnode-before" + } + ] } }, "remove": { @@ -200,7 +222,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-childnode-remove" + } + ] } }, "replaceWith": { @@ -251,7 +279,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-childnode-replacewith" + } + ] } } } diff --git a/api/Client.json b/api/Client.json index 21836b4a41a6bc..93b4a8b0b83704 100644 --- a/api/Client.json +++ b/api/Client.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#client" + } + ] }, "frameType": { "__compat": { @@ -100,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#client-frametype" + } + ] } }, "id": { @@ -152,7 +164,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#client-id" + } + ] } }, "postMessage": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#client-postmessage-method" + } + ] } }, "type": { @@ -252,7 +276,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#client-type" + } + ] } }, "url": { @@ -304,7 +334,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#client-url" + } + ] } } } diff --git a/api/Clients.json b/api/Clients.json index 2791d52f6288de..c19d7ca9c8179b 100644 --- a/api/Clients.json +++ b/api/Clients.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#clients" + } + ] }, "claim": { "__compat": { @@ -100,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#clients-claim" + } + ] } }, "get": { @@ -152,7 +164,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#clients-get-method" + } + ] } }, "matchAll": { @@ -219,7 +237,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#clients" + } + ] }, "includeUncontrolled_option": { "__compat": { @@ -375,7 +399,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#clients" + } + ] } } } diff --git a/api/Clipboard.json b/api/Clipboard.json index ec9f53b2d46e81..a1625e5aae781c 100644 --- a/api/Clipboard.json +++ b/api/Clipboard.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Clipboard API", + "url": "https://w3c.github.io/clipboard-apis/#clipboard-interface" + } + ] }, "read": { "__compat": { @@ -114,7 +120,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Clipboard API", + "url": "https://w3c.github.io/clipboard-apis/#h-clipboard-read" + } + ] } }, "readText": { @@ -167,7 +179,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Clipboard API", + "url": "https://w3c.github.io/clipboard-apis/#h-clipboard-readtext" + } + ] } }, "write": { @@ -234,7 +252,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Clipboard API", + "url": "https://w3c.github.io/clipboard-apis/#h-clipboard-write-data" + } + ] } }, "writeText": { @@ -287,7 +311,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Clipboard API", + "url": "https://w3c.github.io/clipboard-apis/#h-clipboard-writetext-data" + } + ] } } } diff --git a/api/ClipboardEvent.json b/api/ClipboardEvent.json index 65c74fd700e4b5..2571949786cce7 100644 --- a/api/ClipboardEvent.json +++ b/api/ClipboardEvent.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Clipboard API", + "url": "https://w3c.github.io/clipboard-apis/#clipboard-event-interfaces" + } + ] }, "ClipboardEvent": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Clipboard API", + "url": "https://w3c.github.io/clipboard-apis/#idl-def-ClipboardEventInit" + } + ] } }, "clipboardData": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Clipboard API", + "url": "https://w3c.github.io/clipboard-apis/#widl-ClipboardEvent-clipboardData" + } + ] } } } diff --git a/api/CloseEvent.json b/api/CloseEvent.json index a1a842e9d92370..7e0d3bf4142ba1 100644 --- a/api/CloseEvent.json +++ b/api/CloseEvent.json @@ -97,7 +97,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#closeevent" + } + ] } }, "initCloseEvent": { diff --git a/api/Comment.json b/api/Comment.json index 65eedbc1f3abf8..a0fefd31f47fa8 100644 --- a/api/Comment.json +++ b/api/Comment.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#comment" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1728279322" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1728279322" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-1728279322" + } + ] }, "Comment": { "__compat": { @@ -93,7 +111,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#comment" + } + ] } } } diff --git a/api/CompositionEvent.json b/api/CompositionEvent.json index 9870a365043874..bd3aad18729c02 100644 --- a/api/CompositionEvent.json +++ b/api/CompositionEvent.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "UI Events", + "url": "https://w3c.github.io/uievents/#interface-compositionevent" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#idl-compositionevent" + } + ] }, "CompositionEvent": { "__compat": { @@ -99,7 +109,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#dom-compositionevent-compositionevent" + } + ] } }, "data": { @@ -150,7 +166,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#dom-compositionevent-data" + } + ] } }, "initCompositionEvent": { diff --git a/api/Console.json b/api/Console.json index afd921862c8310..3a28bf0897a1c5 100644 --- a/api/Console.json +++ b/api/Console.json @@ -141,7 +141,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#assert" + } + ] } }, "clear": { @@ -189,7 +195,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#clear" + } + ] } }, "count": { @@ -237,7 +249,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#count" + } + ] } }, "countReset": { @@ -288,7 +306,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#count" + } + ] } }, "dir": { @@ -336,7 +360,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#dir" + } + ] } }, "dirxml": { @@ -384,7 +414,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#dirxml" + } + ] } }, "error": { @@ -432,7 +468,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#error" + } + ] }, "substitution_strings": { "__compat": { @@ -628,7 +670,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#group" + } + ] } }, "groupCollapsed": { @@ -676,7 +724,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#groupcollapsed" + } + ] } }, "groupEnd": { @@ -724,7 +778,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#groupend" + } + ] } }, "info": { @@ -775,7 +835,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#info" + } + ] }, "substitution_strings": { "__compat": { @@ -874,7 +940,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#log" + } + ] }, "substitution_strings": { "__compat": { @@ -1072,7 +1144,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#table" + } + ] } }, "time": { @@ -1120,7 +1198,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#time" + } + ] } }, "timeEnd": { @@ -1168,7 +1252,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#timeend" + } + ] } }, "timeLog": { @@ -1218,7 +1308,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#timelog" + } + ] } }, "timestamp": { @@ -1314,7 +1410,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#trace" + } + ] } }, "warn": { @@ -1362,7 +1464,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Console API", + "url": "https://console.spec.whatwg.org/#warn" + } + ] }, "substitution_strings": { "__compat": { diff --git a/api/ConstantSourceNode.json b/api/ConstantSourceNode.json index bb127cd3df977b..142afe9f66da93 100644 --- a/api/ConstantSourceNode.json +++ b/api/ConstantSourceNode.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#ConstantSourceNode" + } + ] }, "ConstantSourceNode": { "__compat": { @@ -101,7 +107,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#ConstantSourceNode" + } + ] } }, "offset": { @@ -156,7 +168,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-ConstantSourceNode-offset" + } + ] } }, "onended": { @@ -211,7 +229,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#idl-def-AudioScheduledSourceNode" + } + ] } }, "start": { diff --git a/api/ConstrainBoolean.json b/api/ConstrainBoolean.json index 51ca320db14677..597f9fd6442e97 100644 --- a/api/ConstrainBoolean.json +++ b/api/ConstrainBoolean.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#idl-def-ConstrainBoolean" + } + ] } } } diff --git a/api/ConstrainDOMString.json b/api/ConstrainDOMString.json index b847eb0f47922a..2b1a5167b99dc3 100644 --- a/api/ConstrainDOMString.json +++ b/api/ConstrainDOMString.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#idl-def-ConstrainDOMString" + } + ] } } } diff --git a/api/ConstrainDouble.json b/api/ConstrainDouble.json index 27c459b8f04b1c..30019d71292902 100644 --- a/api/ConstrainDouble.json +++ b/api/ConstrainDouble.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#idl-def-ConstrainDouble" + } + ] } } } diff --git a/api/ConstrainLong.json b/api/ConstrainLong.json index 8a6dcb96e747d9..d4b8e7034258c2 100644 --- a/api/ConstrainLong.json +++ b/api/ConstrainLong.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#idl-def-ConstrainLong" + } + ] } } } diff --git a/api/ConvolverNode.json b/api/ConvolverNode.json index 3921c7bcb8be4e..7f0f86378e07a4 100644 --- a/api/ConvolverNode.json +++ b/api/ConvolverNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#ConvolverNode" + } + ] }, "ConvolverNode": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#ConvolverNode" + } + ] } }, "buffer": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-ConvolverNode-buffer" + } + ] } }, "normalize": { @@ -201,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-ConvolverNode-normalize" + } + ] } } } diff --git a/api/Coordinates.json b/api/Coordinates.json index 7661b7cb524e67..064932f72e1044 100644 --- a/api/Coordinates.json +++ b/api/Coordinates.json @@ -54,7 +54,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#coordinates" + } + ] }, "secure_context_required": { "__compat": { @@ -161,7 +167,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#accuracy" + } + ] } }, "altitude": { @@ -218,7 +230,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#altitude" + } + ] } }, "altitudeAccuracy": { @@ -275,7 +293,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#altitudeaccuracy" + } + ] } }, "heading": { @@ -332,7 +356,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#heading" + } + ] } }, "latitude": { @@ -389,7 +419,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#lat" + } + ] } }, "longitude": { @@ -446,7 +482,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#lon" + } + ] } }, "speed": { @@ -503,7 +545,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#speed" + } + ] } } } diff --git a/api/CountQueuingStrategy.json b/api/CountQueuingStrategy.json index 8131b8c0734713..f959d7c1b07ac9 100644 --- a/api/CountQueuingStrategy.json +++ b/api/CountQueuingStrategy.json @@ -72,7 +72,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#cqs-class" + } + ] }, "CountQueuingStrategy": { "__compat": { @@ -147,7 +153,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#cqs-constructor" + } + ] } }, "size": { @@ -222,7 +234,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#cqs-size" + } + ] } } } diff --git a/api/CredentialsContainer.json b/api/CredentialsContainer.json index bc1c58655be1a1..d151d512d35761 100644 --- a/api/CredentialsContainer.json +++ b/api/CredentialsContainer.json @@ -92,7 +92,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Credential Management", + "url": "https://w3c.github.io/webappsec-credential-management/#dom-credentialscontainer-get" + } + ] } }, "get": { @@ -140,7 +146,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Credential Management", + "url": "https://w3c.github.io/webappsec-credential-management/#dom-credentialscontainer-get" + } + ] } }, "preventSilentAccess": { @@ -203,7 +215,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Credential Management", + "url": "https://w3c.github.io/webappsec-credential-management/#dom-credentialscontainer-preventsilentaccess" + } + ] } }, "store": { diff --git a/api/Crypto.json b/api/Crypto.json index ea55bf9e621503..12baf5f50ddc22 100644 --- a/api/Crypto.json +++ b/api/Crypto.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#crypto-interface" + } + ] }, "subtle": { "__compat": { @@ -137,7 +143,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-Crypto" + } + ] } }, "getRandomValues": { @@ -188,7 +200,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#Crypto-method-getRandomValues" + } + ] } } } diff --git a/api/CryptoKey.json b/api/CryptoKey.json index 41f8a52b0d6c48..fd06bb7ffbd1f9 100644 --- a/api/CryptoKey.json +++ b/api/CryptoKey.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey" + } + ] }, "type": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-type" + } + ] } }, "extractable": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-extractable" + } + ] } }, "algorithm": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-algorithm" + } + ] } }, "usages": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-CryptoKey-usages" + } + ] } } } diff --git a/api/CustomElementRegistry.json b/api/CustomElementRegistry.json index 9b378624c8feec..440252086d4c3e 100644 --- a/api/CustomElementRegistry.json +++ b/api/CustomElementRegistry.json @@ -106,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/custom-elements.html#customelementregistry" + } + ] }, "builtin": { "__compat": { @@ -359,7 +365,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/custom-elements.html#dom-customelementregistry-define" + } + ] } }, "get": { @@ -506,7 +518,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/custom-elements.html#dom-customelementregistry-get" + } + ] } }, "upgrade": { @@ -704,7 +722,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-customelementregistry-whendefined" + } + ] } } } diff --git a/api/CustomEvent.json b/api/CustomEvent.json index e7b12a984fce1a..757e14df927cbd 100644 --- a/api/CustomEvent.json +++ b/api/CustomEvent.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-customevent" + } + ] }, "worker_support": { "__compat": { @@ -143,7 +149,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-customevent" + } + ] } }, "detail": { @@ -193,7 +205,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-customeventinit-detail" + } + ] } }, "initCustomEvent": { diff --git a/api/DOMException.json b/api/DOMException.json index bdb733c7060ecc..cd03117dcfbc45 100644 --- a/api/DOMException.json +++ b/api/DOMException.json @@ -48,7 +48,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebIDL", + "url": "https://heycam.github.io/webidl/#es-DOMException-call" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#exception-domexception" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-17189187" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-17189187" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-17189187" + } + ] }, "DOMException": { "__compat": { @@ -99,7 +121,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebIDL", + "url": "https://heycam.github.io/webidl/#es-DOMException-call" + } + ] } }, "code": { @@ -150,7 +178,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebIDL", + "url": "https://heycam.github.io/webidl/#dom-domexception-code" + } + ] } }, "message": { @@ -201,7 +235,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebIDL", + "url": "https://heycam.github.io/webidl/#dom-domexception-message" + } + ] } }, "name": { @@ -252,7 +292,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebIDL", + "url": "https://heycam.github.io/webidl/#dom-domexception-name" + } + ] } } } diff --git a/api/DOMHighResTimestamp.json b/api/DOMHighResTimestamp.json index c8e755ae5c3344..047f49caeb35fd 100644 --- a/api/DOMHighResTimestamp.json +++ b/api/DOMHighResTimestamp.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Highres Time Level 2", + "url": "https://www.w3.org/TR/hr-time-2/#dom-domhighrestimestamp" + }, + { + "name": "Highres Time", + "url": "https://www.w3.org/TR/hr-time-1/#sec-DOMHighResTimeStamp" + } + ] } } } diff --git a/api/DOMImplementation.json b/api/DOMImplementation.json index 39956eeeca105f..a6d545a90bf9eb 100644 --- a/api/DOMImplementation.json +++ b/api/DOMImplementation.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#domimplementation" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-102161490" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-102161490" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-102161490" + } + ] }, "createDocument": { "__compat": { @@ -92,7 +110,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domimplementation-createdocument" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#Level-2-Core-DOM-createDocument" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocument" + } + ] } }, "createDocumentType": { @@ -140,7 +172,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domimplementation-createdocumenttype" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#Level-2-Core-DOM-createDocType" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocType" + } + ] } }, "createHTMLDocument": { @@ -189,7 +235,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domimplementation-createhtmldocument" + } + ] } }, "hasFeature": { diff --git a/api/DOMMatrix.json b/api/DOMMatrix.json index d2027b7ccf2817..60f50e933eb5d0 100644 --- a/api/DOMMatrix.json +++ b/api/DOMMatrix.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dommatrix" + } + ] }, "worker_support": { "__compat": { @@ -141,7 +147,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-dommatrixreadonly" + } + ] } } } diff --git a/api/DOMMatrixReadOnly.json b/api/DOMMatrixReadOnly.json index 36fdc8b6bd67f7..fe6fb840b50d6d 100644 --- a/api/DOMMatrixReadOnly.json +++ b/api/DOMMatrixReadOnly.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly" + } + ] }, "worker_support": { "__compat": { @@ -141,7 +147,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-dommatrixreadonly" + } + ] } }, "m11": { diff --git a/api/DOMParser.json b/api/DOMParser.json index 1007238036ccaa..f5323fe53c4ff2 100644 --- a/api/DOMParser.json +++ b/api/DOMParser.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM Parsing", + "url": "https://w3c.github.io/DOM-Parsing/#the-domparser-interface" + } + ] }, "DOMParser": { "__compat": { diff --git a/api/DOMPoint.json b/api/DOMPoint.json index 98387b52dab938..40f3017bbc3e6e 100644 --- a/api/DOMPoint.json +++ b/api/DOMPoint.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#DOMPoint" + } + ] }, "DOMPoint": { "__compat": { @@ -93,7 +99,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompoint-dompoint" + } + ] } } } diff --git a/api/DOMPointInit.json b/api/DOMPointInit.json index dd31c69ebc95e5..fc53ea38bf7efc 100644 --- a/api/DOMPointInit.json +++ b/api/DOMPointInit.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointreadonly-frompoint" + } + ] }, "x": { "__compat": { @@ -92,7 +98,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointinit-x" + } + ] } }, "y": { @@ -140,7 +152,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointinit-y" + } + ] } }, "z": { @@ -188,7 +206,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointinit-z" + } + ] } }, "w": { @@ -236,7 +260,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointinit-w" + } + ] } } } diff --git a/api/DOMPointReadOnly.json b/api/DOMPointReadOnly.json index 35e129c22cee47..1e2299a7e9628c 100644 --- a/api/DOMPointReadOnly.json +++ b/api/DOMPointReadOnly.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#DOMPoint" + } + ] }, "DOMPointReadOnly": { "__compat": { @@ -93,7 +99,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dompointreadonly" + } + ] } }, "x": { @@ -141,7 +153,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointreadonly-x" + } + ] } }, "y": { @@ -189,7 +207,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointreadonly-y" + } + ] } }, "z": { @@ -237,7 +261,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointreadonly-z" + } + ] } }, "w": { @@ -285,7 +315,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointreadonly-w" + } + ] } }, "fromPoint": { @@ -333,7 +369,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointreadonly-frompoint" + } + ] } }, "matrixTransform": { @@ -429,7 +471,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-dompointreadonly-tojson" + } + ] } } } diff --git a/api/DOMQuad.json b/api/DOMQuad.json index 082d55e94754be..3e3cd26b197466 100644 --- a/api/DOMQuad.json +++ b/api/DOMQuad.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#DOMQuad" + } + ] }, "DOMQuad": { "__compat": { diff --git a/api/DOMRect.json b/api/DOMRect.json index 47dfdbd6210452..3e1a3a88576ee7 100644 --- a/api/DOMRect.json +++ b/api/DOMRect.json @@ -63,7 +63,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#DOMRect" + } + ] }, "DOMRect": { "__compat": { @@ -111,7 +117,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-domrectreadonly-domrectreadonlyx-y-width-height" + } + ] } } } diff --git a/api/DOMRectReadOnly.json b/api/DOMRectReadOnly.json index c7ec1df53d31f2..6f21587eea24b3 100644 --- a/api/DOMRectReadOnly.json +++ b/api/DOMRectReadOnly.json @@ -63,7 +63,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#DOMRect" + } + ] }, "DOMRectReadOnly": { "__compat": { @@ -111,7 +117,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#DOMRect" + } + ] } }, "fromRect": { @@ -162,7 +174,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-domrect-fromrect" + } + ] } }, "bottom": { @@ -213,7 +231,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-domrectreadonly-bottom" + } + ] } }, "height": { @@ -264,7 +288,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-domrectreadonly-height" + } + ] } }, "left": { @@ -315,7 +345,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-domrectreadonly-left" + } + ] } }, "right": { @@ -366,7 +402,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-domrectreadonly-right" + } + ] } }, "top": { @@ -417,7 +459,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-domrectreadonly-top" + } + ] } }, "width": { @@ -468,7 +516,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-domrectreadonly-width" + } + ] } }, "x": { @@ -516,7 +570,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-domrectreadonly-x" + } + ] } }, "y": { @@ -564,7 +624,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geometry Interfaces", + "url": "https://drafts.fxtf.org/geometry/#dom-domrectreadonly-y" + } + ] } } } diff --git a/api/DOMStringList.json b/api/DOMStringList.json index b7bb3d88e39f81..98ed86027e7d35 100644 --- a/api/DOMStringList.json +++ b/api/DOMStringList.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#the-domstringlist-interface" + } + ] }, "length": { "__compat": { diff --git a/api/DOMTokenList.json b/api/DOMTokenList.json index 75419a4f669929..3fca087cfd5a86 100644 --- a/api/DOMTokenList.json +++ b/api/DOMTokenList.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-domtokenlist" + } + ] }, "replace": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domtokenlist-replace" + } + ] }, "boolean_value": { "__compat": { @@ -253,7 +265,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-domtokenlist" + } + ] } }, "length": { @@ -301,7 +319,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domtokenlist-length" + } + ] } }, "value": { @@ -346,7 +370,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domtokenlist-value" + } + ] } }, "item": { @@ -394,7 +424,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domtokenlist-item" + } + ] } }, "contains": { @@ -442,7 +478,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domtokenlist-contains" + } + ] } }, "add": { @@ -490,7 +532,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domtokenlist-add" + } + ] } }, "remove": { @@ -538,7 +586,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domtokenlist-remove" + } + ] } }, "toggle": { @@ -586,7 +640,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-domtokenlist-toggle" + } + ] }, "force_argument": { "__compat": { @@ -679,7 +739,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-domtokenlist" + } + ] } }, "forEach": { @@ -727,7 +793,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-domtokenlist" + } + ] } }, "keys": { @@ -772,7 +844,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-domtokenList" + } + ] } }, "values": { @@ -817,7 +895,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-domtokenList" + } + ] } } } diff --git a/api/DataTransfer.json b/api/DataTransfer.json index 6eb912fa351d7c..26de16e7fde724 100644 --- a/api/DataTransfer.json +++ b/api/DataTransfer.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#datatransfer" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#the-datatransfer-interface" + } + ] }, "DataTransfer": { "__compat": { @@ -94,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-datatransfer" + } + ] } }, "addElement": { @@ -196,7 +212,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransfer-cleardata" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransfer-cleardata" + } + ] } }, "dropEffect": { @@ -247,7 +273,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransfer-dropeffect" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransfer-dropeffect" + } + ] } }, "effectAllowed": { @@ -298,7 +334,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransfer-effectallowed" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransfer-effectallowed" + } + ] } }, "files": { @@ -349,7 +395,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransfer-files" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransfer-files" + } + ] } }, "getData": { @@ -400,7 +456,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransfer-getdata" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransfer-getdata" + } + ] } }, "items": { @@ -448,7 +514,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransfer-items" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransfer-items" + } + ] } }, "mozClearDataAt": { @@ -907,7 +983,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransfer-setdata" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransfer-setdata" + } + ] } }, "setDragImage": { @@ -958,7 +1044,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransfer-setdragimage" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransfer-setdragimage" + } + ] } }, "types": { @@ -1009,7 +1105,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransfer-types" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransfer-types" + } + ] } } } diff --git a/api/DataTransferItem.json b/api/DataTransferItem.json index d0f32e0002c53b..11912e0b41194f 100644 --- a/api/DataTransferItem.json +++ b/api/DataTransferItem.json @@ -45,7 +45,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#datatransferitem" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#datatransferitem" + }, + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-datatransferitem-webkitgetasentry" + } + ] }, "getAsFile": { "__compat": { @@ -92,7 +106,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransferitem-getasfile" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransferitem-getasfile" + } + ] } }, "getAsString": { @@ -140,7 +164,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransferitem-getasstring" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransferitem-getasstring" + } + ] } }, "kind": { @@ -188,7 +222,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransferitem-kind" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransferitem-kind" + } + ] } }, "type": { @@ -236,7 +280,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransferitem-type" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransferitem-type" + } + ] } }, "webkitGetAsEntry": { @@ -284,7 +338,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-datatransferitem-webkitgetasentry" + } + ] } } } diff --git a/api/DataTransferItemList.json b/api/DataTransferItemList.json index a3636246a7bbd6..bd983cb747ed65 100644 --- a/api/DataTransferItemList.json +++ b/api/DataTransferItemList.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#datatransferitemlist" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#datatransferitemlist" + } + ] }, "DataTransferItem": { "__compat": { @@ -93,7 +103,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#the-datatransferitemlist-interface" + } + ] } }, "add": { @@ -141,7 +157,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransferitemlist-add" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransferitemlist-add" + } + ] } }, "clear": { @@ -189,7 +215,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransferitemlist-clear" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransferitemlist-clear" + } + ] } }, "length": { @@ -237,7 +273,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransferitemlist-length" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransferitemlist-length" + } + ] } }, "remove": { @@ -285,7 +331,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransferitemlist-remove" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-datatransferitemlist-remove" + } + ] } } } diff --git a/api/DedicatedWorkerGlobalScope.json b/api/DedicatedWorkerGlobalScope.json index b8faad4d2fe00a..24c4be8bb44fc0 100644 --- a/api/DedicatedWorkerGlobalScope.json +++ b/api/DedicatedWorkerGlobalScope.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dedicatedworkerglobalscope" + } + ] }, "name": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-dedicatedworkerglobalscope-name" + } + ] } }, "onmessage": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-dedicatedworkerglobalscope-onmessage" + } + ] } }, "onmessageerror": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-dedicatedworkerglobalscope-onmessageerror" + } + ] } }, "close": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-dedicatedworkerglobalscope-close" + } + ] } }, "postMessage": { @@ -302,7 +332,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-dedicatedworkerglobalscope-postmessage" + } + ] } } } diff --git a/api/DelayNode.json b/api/DelayNode.json index 0a05268a47da15..f14476ace8f7c5 100644 --- a/api/DelayNode.json +++ b/api/DelayNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-delaynode-interface" + } + ] }, "DelayNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-delaynode" + } + ] } }, "delayTime": { @@ -153,7 +165,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-delaynode-delaytime" + } + ] } } } diff --git a/api/DeviceAcceleration.json b/api/DeviceAcceleration.json index bacad785b10ba4..fc4acc6d2d6041 100644 --- a/api/DeviceAcceleration.json +++ b/api/DeviceAcceleration.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Device Orientation", + "url": "https://w3c.github.io/deviceorientation/spec-source-orientation.html#device_acceleration" + } + ] }, "x": { "__compat": { diff --git a/api/DeviceProximityEvent.json b/api/DeviceProximityEvent.json index caf334cf3dd21c..7d5c6a4c51eab0 100644 --- a/api/DeviceProximityEvent.json +++ b/api/DeviceProximityEvent.json @@ -233,7 +233,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Proximity Events", + "url": "https://w3c.github.io/proximity/#device-proximity" + } + ] } }, "value": { @@ -312,7 +318,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Proximity Events", + "url": "https://w3c.github.io/proximity/#device-proximity" + } + ] } } } diff --git a/api/Document.json b/api/Document.json index 384c7a86d85ae8..4debf6a8b91014 100644 --- a/api/Document.json +++ b/api/Document.json @@ -45,7 +45,61 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-document" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#the-document-object" + }, + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-document-getselection" + }, + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#extensions-to-the-document-interface" + }, + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#extensions-to-the-document-interface" + }, + { + "name": "Pointer Lock", + "url": "https://w3c.github.io/pointerlock/#extensions-to-the-document-interface" + }, + { + "name": "Page Visibility API", + "url": "https://www.w3.org/TR/page-visibility/#extensions-to-the-document-interface" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#extensions-to-document-interface" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#interface-document" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/#i-Document" + }, + { + "name": "DOM3 XPath", + "url": "https://www.w3.org/TR/DOM-Level-3-XPath/xpath.html#XPathEvaluator" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/#i-Document" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/#i-Document" + } + ] }, "Document": { "__compat": { @@ -141,7 +195,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-url" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#attribute-URL" + } + ] } }, "adoptNode": { @@ -526,7 +590,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#dom-document-body" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/dom.html#dom-document-body" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#dom-document-body" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-56360201" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#attribute-body" + } + ] } }, "captureEvents": { @@ -791,7 +877,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-characterset" + } + ] } }, "clear": { @@ -887,7 +979,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-close" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-98948567" + } + ] } }, "compatMode": { @@ -1031,7 +1133,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-contenttype" + } + ] } }, "cookie": { @@ -1079,7 +1187,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-8747038" + } + ] } }, "createAttribute": { @@ -1141,7 +1255,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-createattribute" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1084891198" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1084891198" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-1084891198" + } + ] } }, "createAttributeNS": { @@ -1333,7 +1465,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-createdocumentfragment" + } + ] } }, "createElement": { @@ -1382,7 +1520,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-createelement" + } + ] }, "options": { "__compat": { @@ -1486,7 +1630,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-createelementns" + } + ] }, "options": { "__compat": { @@ -1925,7 +2075,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1975348127" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1975348127" + } + ] } }, "createTouch": { @@ -2092,7 +2252,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-createtreewalker" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#NodeIteratorFactory-createTreeWalker" + } + ] }, "whatToShow_filter_optional": { "__compat": { @@ -2238,7 +2408,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#dom-document-currentscript" + } + ] } }, "defaultView": { @@ -2286,7 +2462,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-defaultview" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-document-defaultview" + } + ] } }, "designMode": { @@ -2334,7 +2520,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#making-entire-documents-editable:-the-designmode-idl-attribute" + } + ] } }, "dir": { @@ -2384,7 +2576,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-dir" + } + ] } }, "doctype": { @@ -2432,7 +2630,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-B63ED1A31" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-B63ED1A31" + } + ] } }, "documentElement": { @@ -2480,7 +2688,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-87CD092" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-87CD092" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-document-documentelement" + }, + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-documentelement" + } + ] } }, "documentURI": { @@ -2528,7 +2754,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-documenturi" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/#Document3-documentURI" + } + ] }, "readonly": { "__compat": { @@ -2726,7 +2962,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/origin.html#relaxing-the-same-origin-restriction" + } + ] } }, "embeds": { @@ -2774,7 +3016,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-embeds" + } + ] } }, "enableStyleSheetsForSet": { @@ -2870,7 +3118,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 XPath", + "url": "https://www.w3.org/TR/DOM-Level-3-XPath/xpath.html#XPathEvaluator-evaluate" + } + ] } }, "execCommand": { @@ -2918,7 +3172,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#execcommand()" + } + ] }, "insertBrOnReturn": { "__compat": { @@ -3313,7 +3573,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fullscreen", + "url": "https://fullscreen.spec.whatwg.org/#dom-document-exitfullscreen" + } + ] }, "returns_a_promise": { "__compat": { @@ -3409,7 +3675,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Lock", + "url": "https://w3c.github.io/pointerlock/l#extensions-to-the-document-interface" + } + ] } }, "fgColor": { @@ -3570,7 +3842,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#FontFaceSet-interface" + } + ] } }, "forms": { @@ -3618,7 +3896,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-forms" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-1689064" + } + ] } }, "fullscreen": { @@ -3799,7 +4087,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fullscreen", + "url": "https://fullscreen.spec.whatwg.org/#dom-document-fullscreenenabled" + } + ] } }, "getAnimations": { @@ -3848,7 +4142,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-document-getanimations" + } + ] } }, "getBoxObjectFor": { @@ -3945,7 +4245,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#method-getElementById" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-getElBId" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-getElBId" + }, + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-nonelementparentnode" + } + ] } }, "getElementsByClassName": { @@ -4044,7 +4362,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-getelementsbyname" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-71555259" + } + ] } }, "getElementsByTagName": { @@ -4188,7 +4516,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-document-hasfocus" + } + ] } }, "head": { @@ -4236,7 +4570,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#dom-document-head" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/dom.html#dom-document-head" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#dom-document-head" + } + ] } }, "height": { @@ -4354,7 +4702,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Page Visibility API", + "url": "https://www.w3.org/TR/page-visibility/#dom-document-hidden" + } + ] } }, "images": { @@ -4402,7 +4756,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-images" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-90379117" + } + ] } }, "implementation": { @@ -4498,7 +4862,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-importnode" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#Core-Document-importNode" + } + ] }, "deep_optional": { "__compat": { @@ -4738,7 +5112,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-links" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-7068919" + } + ] } }, "loadOverlay": { @@ -4857,7 +5241,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/history.html#the-location-interface" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#the-location-interface" + } + ] } }, "mozSetImageElement": { @@ -5313,7 +5707,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fullscreen", + "url": "https://fullscreen.spec.whatwg.org/#handler-document-onfullscreenchange" + } + ] } }, "onfullscreenerror": { @@ -5385,7 +5785,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fullscreen", + "url": "https://fullscreen.spec.whatwg.org/#handler-document-onfullscreenerror" + } + ] } }, "onpaste": { @@ -5744,7 +6150,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Page Visibility API", + "url": "https://www.w3.org/TR/page-visibility/#onvisiblitychange-event-handler" + } + ] } }, "open": { @@ -5792,7 +6204,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-open" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-72161170" + } + ] } }, "origin": { @@ -5840,7 +6262,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-document-origin" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#concept-origin" + } + ] } }, "plugins": { @@ -5888,7 +6320,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-plugins" + } + ] } }, "policy": { @@ -6130,7 +6568,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#querycommandenabled()" + } + ] } }, "queryCommandIndeterm": { @@ -6226,7 +6670,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#execcommand()" + } + ] } }, "queryCommandSupported": { @@ -6288,7 +6738,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#querycommandsupported()" + } + ] } }, "queryCommandText": { @@ -6438,7 +6894,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selectors API Level 2", + "url": "https://dev.w3.org/2006/webapi/selectors-api2/#interface-definitions" + }, + { + "name": "Selectors API Level 1", + "url": "https://www.w3.org/TR/selectors-api/#interface-definitions" + } + ] } }, "querySelectorAll": { @@ -6486,7 +6952,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-parentnode-queryselectorall" + }, + { + "name": "Selectors API Level 2", + "url": "https://dev.w3.org/2006/webapi/selectors-api2/#dom-parentnode-queryselectorall" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-parentnode-queryselectorall" + }, + { + "name": "Selectors API Level 1", + "url": "https://www.w3.org/TR/selectors-api/#interface-definitions" + } + ] } }, "readyState": { @@ -6543,7 +7027,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#current-document-readiness" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#current-document-readiness" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#current-document-readiness" + } + ] } }, "referrer": { @@ -6857,7 +7355,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-scripts" + } + ] } }, "scrollingElement": { @@ -6917,7 +7421,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-document-scrollingelement" + } + ] } }, "selectedStyleSheetSet": { @@ -7063,7 +7573,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-document-timeline" + } + ] } }, "title": { @@ -7278,7 +7794,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Page Visibility API", + "url": "https://www.w3.org/TR/page-visibility/#dom-document-visibilitystate" + } + ] }, "prerender": { "__compat": { @@ -7518,7 +8040,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-write" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-75233634" + } + ] } }, "writeln": { @@ -7566,7 +8098,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-writeln" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-35318390" + } + ] } }, "xmlEncoding": { diff --git a/api/DocumentFragment.json b/api/DocumentFragment.json index 451910dfe41a00..ff7070f6ba82b7 100644 --- a/api/DocumentFragment.json +++ b/api/DocumentFragment.json @@ -48,7 +48,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-documentfragment" + }, + { + "name": "Selectors API Level 1", + "url": "https://www.w3.org/TR/selectors-api/#the-apis" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-B63ED1A3" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-B63ED1A3" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-B63ED1A3" + } + ] }, "DocumentFragment": { "__compat": { @@ -99,7 +121,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-documentfragment" + } + ] } }, "querySelector": { @@ -150,7 +178,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selectors API Level 2", + "url": "https://dev.w3.org/2006/webapi/selectors-api2/#queryselector" + }, + { + "name": "Selectors API Level 1", + "url": "https://www.w3.org/TR/selectors-api/#queryselector" + } + ] } }, "querySelectorAll": { @@ -201,7 +239,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selectors API Level 1", + "url": "https://www.w3.org/TR/selectors-api/#queryselector" + } + ] } }, "properties": { @@ -253,7 +297,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#parentnode" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#interface-elementTraversal" + } + ] } }, "methods": { @@ -305,7 +359,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#parentnode" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#interface-elementTraversal" + } + ] } } } diff --git a/api/DocumentOrShadowRoot.json b/api/DocumentOrShadowRoot.json index 47101f1ee08aa3..753f3a26601e78 100644 --- a/api/DocumentOrShadowRoot.json +++ b/api/DocumentOrShadowRoot.json @@ -48,7 +48,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#mixin-documentorshadowroot" + }, + { + "name": "Shadow DOM", + "url": "https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-the-documentorshadowroot-mixin" + } + ] }, "activeElement": { "__compat": { @@ -98,7 +108,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-document-activeelement" + }, + { + "name": "Shadow DOM", + "url": "https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-the-documentorshadowroot-mixin" + } + ] } }, "adoptedStyleSheets": { @@ -200,7 +220,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-document-caretpositionfrompoint" + } + ] } }, "elementFromPoint": { @@ -251,7 +277,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Shadow DOM", + "url": "https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-the-documentorshadowroot-mixin" + } + ] } }, "elementsFromPoint": { @@ -302,7 +334,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Shadow DOM", + "url": "https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-the-documentorshadowroot-mixin" + }, + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-document-elementsfrompoint" + } + ] } }, "fullscreenElement": { @@ -396,7 +438,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fullscreen", + "url": "https://fullscreen.spec.whatwg.org/#dom-document-fullscreenelement" + } + ] } }, "getSelection": { @@ -447,7 +495,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Shadow DOM", + "url": "https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-the-documentorshadowroot-mixin" + } + ] } }, "pointerLockElement": { @@ -498,7 +552,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Lock", + "url": "https://w3c.github.io/pointerlock/#extensions-to-the-documentorshadowroot-mixin" + } + ] } }, "styleSheets": { @@ -549,7 +609,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Shadow DOM", + "url": "https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-the-documentorshadowroot-mixin" + } + ] } } } diff --git a/api/DocumentTimeline.json b/api/DocumentTimeline.json index e410fb9593e57a..eec4a452fcb54b 100644 --- a/api/DocumentTimeline.json +++ b/api/DocumentTimeline.json @@ -88,7 +88,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#the-documenttimeline-interface" + } + ] }, "DocumentTimeline": { "__compat": { @@ -179,7 +185,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-documenttimeline-documenttimeline" + } + ] } } } diff --git a/api/DocumentType.json b/api/DocumentType.json index 94567d5f85f8c9..733653c83c2dcb 100644 --- a/api/DocumentType.json +++ b/api/DocumentType.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#documenttype" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-412266927" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-412266927" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-412266927" + } + ] }, "entities": { "__compat": { diff --git a/api/DoubleRange.json b/api/DoubleRange.json index fcb5177c091701..92c9b5961a33ed 100644 --- a/api/DoubleRange.json +++ b/api/DoubleRange.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#idl-def-DoubleRange" + } + ] } } } diff --git a/api/DragEvent.json b/api/DragEvent.json index 94d7af647467a0..499891195bf85d 100644 --- a/api/DragEvent.json +++ b/api/DragEvent.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dragevent" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#the-dragevent-interface" + } + ] }, "DragEvent": { "__compat": { @@ -93,7 +103,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-dragevent-interface" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#the-dragevent-interface" + } + ] } }, "dataTransfer": { @@ -141,7 +161,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-dragevent-datatransfer" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-dragevent-datatransfer" + } + ] } } } diff --git a/api/DynamicsCompressorNode.json b/api/DynamicsCompressorNode.json index 272dfc8141a43c..9202e1ceecf076 100644 --- a/api/DynamicsCompressorNode.json +++ b/api/DynamicsCompressorNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode-section" + } + ] }, "DynamicsCompressorNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-dynamicscompressornode-interface" + } + ] } }, "attack": { @@ -153,7 +165,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-DynamicsCompressorNode-attack" + } + ] } }, "knee": { @@ -204,7 +222,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-DynamicsCompressorNode-knee" + } + ] } }, "ratio": { @@ -255,7 +279,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-DynamicsCompressorNode-ratio" + } + ] } }, "reduction": { @@ -309,7 +339,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-DynamicsCompressorNode-reduction" + } + ] } }, "release": { @@ -360,7 +396,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-DynamicsCompressorNode-release" + } + ] } }, "threshold": { @@ -411,7 +453,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-DynamicsCompressorNode-threshold" + } + ] } } } diff --git a/api/EffectTiming.json b/api/EffectTiming.json index 5fc8e98dac6ade..9fe803f4fc0200 100644 --- a/api/EffectTiming.json +++ b/api/EffectTiming.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#the-effecttiming-dictionary" + } + ] }, "delay": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#start-delay" + } + ] } }, "direction": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#enumdef-playbackdirection" + } + ] } }, "duration": { @@ -200,7 +218,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#iteration-duration" + } + ] } }, "easing": { @@ -251,7 +275,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#time-transformations" + } + ] } }, "endDelay": { @@ -302,7 +332,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#end-delay" + } + ] } }, "fill": { @@ -353,7 +389,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#enumdef-fillmode" + } + ] } }, "iterations": { @@ -404,7 +446,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#iteration-count" + } + ] } }, "iterationStart": { @@ -455,7 +503,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#iteration-start" + } + ] } } } diff --git a/api/Element.json b/api/Element.json index a1ceef560f1b52..0a276e88eae4c3 100644 --- a/api/Element.json +++ b/api/Element.json @@ -48,7 +48,61 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#extensions-to-the-element-interface" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#extensions-to-the-element-interface" + }, + { + "name": "Selectors API Level 1", + "url": "https://www.w3.org/TR/selectors-api/#interface-definitions" + }, + { + "name": "Pointer Lock", + "url": "https://w3c.github.io/pointerlock/index.html#element-interface" + }, + { + "name": "Fullscreen", + "url": "https://fullscreen.spec.whatwg.org/#api" + }, + { + "name": "DOM Parsing", + "url": "https://w3c.github.io/DOM-Parsing/#extensions-to-the-element-interface" + }, + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#extensions-to-the-element-interface" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#ecmascript-bindings" + }, + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-element" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#interface-element" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-745549614" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-745549614" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-745549614" + } + ] }, "accessKey": { "__compat": { @@ -154,7 +208,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#the-animatable-interface" + } + ] }, "id_option": { "__compat": { @@ -335,7 +395,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-attachshadow" + } + ] } }, "attributes": { @@ -386,7 +452,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-attributes" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-84CF096" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-84CF096" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-84CF096" + } + ] } }, "classList": { @@ -444,7 +528,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-classlist" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-element-classlist" + } + ] }, "toggle_method_second_argument": { "__compat": { @@ -648,7 +742,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-classname" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-element-classname" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-95362176" + } + ] } }, "clientHeight": { @@ -699,7 +807,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-clientheight" + } + ] } }, "clientLeft": { @@ -750,7 +864,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-clientleft" + } + ] } }, "clientTop": { @@ -801,7 +921,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-clienttop" + } + ] } }, "clientWidth": { @@ -852,7 +978,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-clientwidth" + } + ] } }, "closest": { @@ -903,7 +1035,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-closest" + } + ] } }, "computedStyleMap": { @@ -954,7 +1092,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-element-computedstylemap" + } + ] } }, "createShadowRoot": { @@ -1248,7 +1392,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-getattributens" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/#ID-ElGetAttrNS" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/#ID-ElGetAttrNS" + } + ] } }, "getAttributeNames": { @@ -1299,7 +1457,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-getattributenames" + } + ] } }, "getAttributeNode": { @@ -1453,7 +1617,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-getboundingclientrect" + } + ] }, "width": { "__compat": { @@ -1708,7 +1878,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-getclientrects" + } + ] } }, "getElementsByClassName": { @@ -1761,7 +1937,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-getelementsbyclassname" + } + ] } }, "getElementsByTagName": { @@ -1817,7 +1999,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-getelementsbytagname" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1938918D" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1938918D" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-1938918D" + } + ] }, "all_elements_selector": { "__compat": { @@ -1931,7 +2131,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-getelementsbytagnamens" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-A6C90942" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-A6C90942" + } + ] }, "all_elements_selector": { "__compat": { @@ -2012,7 +2226,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-hasattribute" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-ElHasAttr" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-ElHasAttr" + } + ] } }, "hasAttributeNS": { @@ -2115,7 +2343,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-hasattributes" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/#ID-NodeHasAttrs" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/#ID-NodeHasAttrs" + } + ] } }, "id": { @@ -2166,7 +2408,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-id" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-63534901" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-63534901" + } + ] } }, "innerHTML": { @@ -2217,7 +2473,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM Parsing", + "url": "https://w3c.github.io/DOM-Parsing/#dom-element-innerhtml" + } + ] } }, "insertAdjacentElement": { @@ -2268,7 +2530,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-insertadjacentelement" + } + ] } }, "insertAdjacentHTML": { @@ -2320,7 +2588,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM Parsing", + "url": "https://w3c.github.io/DOM-Parsing/#widl-Element-insertAdjacentHTML-void-DOMString-position-DOMString-text" + } + ] } }, "insertAdjacentText": { @@ -2371,7 +2645,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-insertadjacenttext" + } + ] } }, "localName": { @@ -2425,7 +2705,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-localname" + } + ] } }, "matches": { @@ -2580,7 +2866,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-matches" + } + ] } }, "name": { @@ -2685,7 +2977,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-element-namespaceuri" + } + ] } }, "openOrClosedShadowRoot": { @@ -2819,7 +3117,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-Element-ongotpointercapture" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-Element-ongotpointercapture" + } + ] } }, "onlostpointercapture": { @@ -2900,7 +3208,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-Element-onlostpointercapture" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-Element-onlostpointercapture" + } + ] } }, "outerHTML": { @@ -2951,7 +3269,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM Parsing", + "url": "https://w3c.github.io/DOM-Parsing/#outerhtml" + } + ] } }, "prefix": { @@ -3005,7 +3329,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-element-prefix" + } + ] } }, "querySelector": { @@ -3063,7 +3393,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-parentnode-queryselectorall" + }, + { + "name": "Selectors API Level 2", + "url": "https://dev.w3.org/2006/webapi/selectors-api2/#queryselectorall" + }, + { + "name": "Selectors API Level 1", + "url": "https://www.w3.org/TR/selectors-api/#queryselectorall" + } + ] } }, "querySelectorAll": { @@ -3121,7 +3465,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-parentnode-queryselectorall" + }, + { + "name": "Selectors API Level 2", + "url": "https://dev.w3.org/2006/webapi/selectors-api2/#dom-parentnode-queryselectorall" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-parentnode-queryselectorall" + }, + { + "name": "Selectors API Level 1", + "url": "https://www.w3.org/TR/selectors-api/#interface-definitions" + } + ] } }, "releasePointerCapture": { @@ -3202,7 +3564,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-Element-releasePointerCapture-void-long-pointerId" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-Element-releasePointerCapture-void-long-pointerId" + } + ] } }, "removeAttribute": { @@ -3465,7 +3837,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fullscreen", + "url": "https://fullscreen.spec.whatwg.org/#dom-element-requestfullscreen" + } + ] }, "returns_a_promise": { "__compat": { @@ -3585,7 +3963,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Lock", + "url": "https://w3c.github.io/pointerlock/#element-interface" + } + ] } }, "runtimeStyle": { @@ -3690,7 +4074,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-scrollintoview" + } + ] }, "scrollIntoViewOptions": { "__compat": { @@ -3864,7 +4254,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-scrollheight" + } + ] } }, "scrollLeft": { @@ -3915,7 +4311,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-scrollleft" + } + ] } }, "scrollLeftMax": { @@ -4017,7 +4419,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-scrolltop" + } + ] } }, "scrollTopMax": { @@ -4119,7 +4527,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-element-scrollwidth" + } + ] } }, "setAttribute": { @@ -4457,7 +4871,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-Element-setPointerCapture-void-long-pointerId" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-Element-setPointerCapture-void-long-pointerId" + } + ] } }, "shadowRoot": { @@ -4536,7 +4960,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-shadowroot" + } + ] } }, "slot": { @@ -4587,7 +5017,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-slot" + } + ] } }, "tabStop": { @@ -4689,7 +5125,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-104682815" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-104682815" + } + ] } }, "toggleAttribute": { @@ -4740,7 +5186,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-toggleattribute" + } + ] } } } diff --git a/api/ErrorEvent.json b/api/ErrorEvent.json index a6e8336d28c959..1af5367737f42b 100644 --- a/api/ErrorEvent.json +++ b/api/ErrorEvent.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#the-errorevent-interface" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/webappapis.html#the-errorevent-interface" + } + ] }, "ErrorEvent": { "__compat": { diff --git a/api/Event.json b/api/Event.json index 14e2450fa484b5..5fde100f9613be 100644 --- a/api/Event.json +++ b/api/Event.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-event" + } + ] }, "Event": { "__compat": { @@ -93,7 +99,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-event" + } + ] } }, "bubbles": { @@ -141,7 +153,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-bubbles" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-Event-canBubble" + } + ] } }, "cancelBubble": { @@ -196,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-cancelbubble" + } + ] } }, "cancelable": { @@ -244,7 +272,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-cancelable" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-Event-canCancel" + } + ] } }, "composed": { @@ -292,7 +330,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-composed" + } + ] } }, "composedPath": { @@ -375,7 +419,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-composedpath" + } + ] } }, "createEvent": { @@ -479,7 +529,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-currenttarget" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-event-currenttarget" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#dfn-current-event-target" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-Event-currentTarget" + } + ] } }, "defaultPrevented": { @@ -527,7 +595,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-defaultprevented" + } + ] } }, "eventPhase": { @@ -575,7 +649,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-eventphase" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-event-eventphase" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-Event-eventPhase" + } + ] } }, "explicitOriginalTarget": { @@ -793,7 +881,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-istrusted" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#trusted-events" + } + ] } }, "originalTarget": { @@ -989,7 +1087,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-preventdefault" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-Event-preventDefault" + } + ] } }, "returnValue": { @@ -1085,7 +1193,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-srcelement" + } + ] } }, "stopImmediatePropagation": { @@ -1133,7 +1247,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-stopimmediatepropagation" + } + ] } }, "stopPropagation": { @@ -1181,7 +1301,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-stoppropagation" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-event-stoppropagation" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-Event-stopPropagation" + } + ] } }, "target": { @@ -1229,7 +1363,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-target" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-event-target" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-Event-target" + } + ] } }, "timeStamp": { @@ -1285,7 +1433,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-timestamp" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-event-timestamp" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-Event-timeStamp" + } + ] } }, "type": { @@ -1333,7 +1495,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-event-type" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-Event-type" + } + ] } } } diff --git a/api/EventListener.json b/api/EventListener.json index 73b30c9a66f98c..8300d1f5b98b4c 100644 --- a/api/EventListener.json +++ b/api/EventListener.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#callbackdef-eventlistener" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-EventListener" + } + ] }, "handleEvent": { "__compat": { @@ -92,7 +102,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-eventlistener-handleevent" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-EventListener-handleEvent" + } + ] } } } diff --git a/api/EventSource.json b/api/EventSource.json index 957fc79cebcc6a..913ae5564a8c14 100644 --- a/api/EventSource.json +++ b/api/EventSource.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#the-eventsource-interface" + } + ] }, "worker_support": { "__compat": { @@ -141,7 +147,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#dom-eventsource" + } + ] }, "cors_support": { "__compat": { @@ -237,7 +249,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#dom-eventsource-close" + } + ] } }, "onerror": { @@ -285,7 +303,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#handler-eventsource-onerror" + } + ] } }, "onmessage": { @@ -333,7 +357,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#handler-eventsource-onmessage" + } + ] } }, "onopen": { @@ -381,7 +411,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#handler-eventsource-onopen" + } + ] } }, "readyState": { @@ -429,7 +465,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#dom-eventsource-readystate" + } + ] } }, "url": { @@ -477,7 +519,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#dom-eventsource-url" + } + ] } }, "withCredentials": { @@ -525,7 +573,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/comms.html#dom-eventsource-withcredentials" + } + ] } } } diff --git a/api/EventTarget.json b/api/EventTarget.json index a12754e849d313..393f4ae34de28a 100644 --- a/api/EventTarget.json +++ b/api/EventTarget.json @@ -62,7 +62,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-eventtarget" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/DOM3-Events.html#interface-EventTarget" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.htmlevents.html#Events-EventTarget" + } + ] }, "EventTarget": { "__compat": { @@ -113,7 +127,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-eventtarget-eventtarget" + } + ] } }, "addEventListener": { @@ -175,7 +195,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-eventtarget-addeventlistener" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-eventtarget-addeventlistener" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-EventTarget-addEventListener" + } + ] }, "optional_usecapture": { "__compat": { @@ -540,7 +574,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-eventtarget-dispatchevent" + } + ] } }, "removeEventListener": { @@ -599,7 +639,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-eventtarget-removeeventlistener" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-eventtarget-removeeventlistener" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-EventTarget-removeEventListener" + } + ] }, "optional_usecapture": { "__compat": { diff --git a/api/ExtendableEvent.json b/api/ExtendableEvent.json index abe5e60cd0f164..3ed689d1a4eec3 100644 --- a/api/ExtendableEvent.json +++ b/api/ExtendableEvent.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#extendable-event" + } + ] }, "ExtendableEvent": { "__compat": { @@ -101,7 +107,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#extendable-event" + } + ] } }, "waitUntil": { @@ -152,7 +164,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#extendable-event-waituntil-method" + } + ] }, "async_waitUntil": { "__compat": { diff --git a/api/ExtendableMessageEvent.json b/api/ExtendableMessageEvent.json index 8d05e73a6df3e4..439c57c9795fce 100644 --- a/api/ExtendableMessageEvent.json +++ b/api/ExtendableMessageEvent.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-interface" + } + ] }, "ExtendableMessageEvent": { "__compat": { @@ -100,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-interface" + } + ] } }, "data": { @@ -152,7 +164,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-data-attribute" + } + ] } }, "lastEventId": { @@ -204,7 +222,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-lasteventid-attribute" + } + ] } }, "origin": { @@ -256,7 +280,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-origin-attribute" + } + ] } }, "ports": { @@ -308,7 +338,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-ports-attribute" + } + ] } }, "source": { @@ -360,7 +396,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#extendablemessage-event-source-attribute" + } + ] } } } diff --git a/api/FetchEvent.json b/api/FetchEvent.json index 0d4acc00277d62..7ab97b07a06d2d 100644 --- a/api/FetchEvent.json +++ b/api/FetchEvent.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#fetch-event-section" + } + ] }, "FetchEvent": { "__compat": { @@ -101,7 +107,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#fetch-event-section" + } + ] } }, "client": { @@ -204,7 +216,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#fetch-event-clientid-attribute" + } + ] } }, "isReload": { @@ -256,7 +274,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#fetch-event-isreload-attribute" + } + ] } }, "navigationPreload": { @@ -307,7 +331,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-registration-navigationpreload" + } + ] } }, "preloadResponse": { @@ -408,7 +438,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#fetch-event-section" + } + ] } }, "respondWith": { @@ -469,7 +505,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#fetch-event-respondwith-method" + } + ] }, "resource_url": { "__compat": { diff --git a/api/File.json b/api/File.json index 03e21b190d8c28..b46fb46581b5ba 100644 --- a/api/File.json +++ b/api/File.json @@ -164,7 +164,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#file-attrs" + } + ] } }, "lastModifiedDate": { @@ -267,7 +273,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#file-attrs" + } + ] } }, "type": { @@ -318,7 +330,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#dfn-type" + } + ] } }, "webkitRelativePath": { @@ -368,7 +386,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-file-webkitrelativepath" + } + ] } } } diff --git a/api/FileReader.json b/api/FileReader.json index 9cd318f3d54b13..7047e2ad21b6eb 100644 --- a/api/FileReader.json +++ b/api/FileReader.json @@ -46,7 +46,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#dfn-filereader" + } + ] }, "worker_support": { "__compat": { @@ -141,7 +147,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReader-interface" + } + ] } }, "error": { @@ -201,7 +213,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReader-interface" + } + ] } }, "onabort": { @@ -489,7 +507,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReader-interface" + } + ] } }, "readAsArrayBuffer": { @@ -537,7 +561,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#readAsArrayBuffer" + } + ] } }, "readAsBinaryString": { @@ -585,7 +615,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#readAsBinaryString" + } + ] } }, "readAsDataURL": { @@ -633,7 +669,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReader-interface" + } + ] } }, "readAsText": { @@ -681,7 +723,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReader-interface" + } + ] } }, "result": { @@ -729,7 +777,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReader-interface" + } + ] } } } diff --git a/api/FileReaderSync.json b/api/FileReaderSync.json index 2ac88318c34e98..eb2b0f58dd0da4 100644 --- a/api/FileReaderSync.json +++ b/api/FileReaderSync.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReaderSync" + } + ] }, "worker_support": { "__compat": { @@ -140,7 +146,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReaderSync" + } + ] } }, "readAsBinaryString": { @@ -188,7 +200,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReaderSync" + } + ] } }, "readAsDataURL": { @@ -236,7 +254,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReaderSync" + } + ] } }, "readAsText": { @@ -284,7 +308,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#FileReaderSync" + } + ] } }, "service_workers_support": { diff --git a/api/FileSystemEntry.json b/api/FileSystemEntry.json index 34ef3f937ec382..fea06ec2fa2064 100644 --- a/api/FileSystemEntry.json +++ b/api/FileSystemEntry.json @@ -96,7 +96,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-filesystem" + } + ] } }, "fullPath": { @@ -144,7 +150,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-fullpath" + } + ] } }, "isDirectory": { @@ -192,7 +204,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-isdirectory" + } + ] } }, "isFile": { @@ -240,7 +258,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-isfile" + } + ] } }, "name": { @@ -288,7 +312,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-name" + } + ] } }, "copyTo": { @@ -336,7 +366,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-copyTo" + } + ] } }, "getMetadata": { @@ -384,7 +420,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-getMetadata" + } + ] } }, "getParent": { @@ -432,7 +474,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-getparent" + } + ] } }, "moveTo": { @@ -480,7 +528,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-moveTo" + } + ] } }, "remove": { @@ -528,7 +582,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-remove" + } + ] } }, "toURL": { @@ -576,7 +636,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-entry-tourl" + } + ] } } } diff --git a/api/FileSystemFileEntry.json b/api/FileSystemFileEntry.json index e5f309c528fb8c..9650b95d5ba4c0 100644 --- a/api/FileSystemFileEntry.json +++ b/api/FileSystemFileEntry.json @@ -149,7 +149,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-fileentry-file" + } + ] } } } diff --git a/api/FileSystemFlags.json b/api/FileSystemFlags.json index 3fe1785c623025..23350f819b0739 100644 --- a/api/FileSystemFlags.json +++ b/api/FileSystemFlags.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dictdef-filesystemflags" + } + ] }, "create": { "__compat": { @@ -102,7 +108,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-filesystemflags-create" + } + ] } }, "exclusive": { @@ -157,7 +169,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-filesystemflags-exclusive" + } + ] } } } diff --git a/api/FocusEvent.json b/api/FocusEvent.json index ab027d446a2b70..58c7d0ff1618c2 100644 --- a/api/FocusEvent.json +++ b/api/FocusEvent.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#interface-focusevent" + } + ] }, "FocusEvent": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#interface-FocusEvent" + } + ] } }, "relatedTarget": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-FocusEvent-relatedTarget" + } + ] } } } diff --git a/api/FontFace.json b/api/FontFace.json index 55fb6ed3d78596..a6899c0a44e230 100644 --- a/api/FontFace.json +++ b/api/FontFace.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#FontFace-interface" + } + ] }, "FontFace": { "__compat": { @@ -93,7 +99,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#font-face-constructor" + } + ] } }, "display": { @@ -141,7 +153,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#dom-fontface-family" + }, + { + "name": "CSS4 Fonts", + "url": "https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-display" + } + ] } }, "family": { @@ -189,7 +211,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#dom-fontface-family" + } + ] } }, "style": { diff --git a/api/FontFaceSet.json b/api/FontFaceSet.json index a6065a66059599..f53a5050d2cb30 100644 --- a/api/FontFaceSet.json +++ b/api/FontFaceSet.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#FontFaceSet-interface" + } + ] }, "status": { "__compat": { @@ -332,7 +338,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#font-face-set-check" + } + ] } }, "clear": { @@ -476,7 +488,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#font-face-set-load" + } + ] } }, "ready": { @@ -524,7 +542,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#dom-fontfaceset-ready" + } + ] } } } diff --git a/api/FontFaceSetLoadEvent.json b/api/FontFaceSetLoadEvent.json index a232c35ecbd81f..c3f694915e26b8 100644 --- a/api/FontFaceSetLoadEvent.json +++ b/api/FontFaceSetLoadEvent.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#dom-fontfacesetloadevent-fontfacesetloadevent" + } + ] }, "FontFaceSetLoadEvent": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#fontfacesetloadevent" + } + ] } }, "fontfaces": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Font Loading", + "url": "https://drafts.csswg.org/css-font-loading/#dom-fontfacesetloadevent-fontfaces" + } + ] } } } diff --git a/api/FormData.json b/api/FormData.json index e7d455ee368a06..67a09970112fea 100644 --- a/api/FormData.json +++ b/api/FormData.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#interface-formdata" + } + ] }, "FormData": { "__compat": { @@ -101,7 +107,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata" + } + ] } }, "append": { @@ -156,7 +168,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata-append" + } + ] }, "AppendWithFilename": { "__compat": { @@ -207,7 +225,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata-append" + } + ] } } }, @@ -259,7 +283,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata-delete" + } + ] } }, "get": { @@ -310,7 +340,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata-get" + } + ] } }, "getAll": { @@ -361,7 +397,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata-getall" + } + ] } }, "has": { @@ -412,7 +454,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata-has" + } + ] } }, "set": { @@ -463,7 +511,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata-set" + } + ] } }, "entries": { @@ -514,7 +568,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata" + } + ] } }, "keys": { @@ -565,7 +625,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata" + } + ] } }, "values": { @@ -616,7 +682,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-formdata" + } + ] } }, "SupportForOf": { @@ -668,7 +740,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#interface-formdata" + } + ] } }, "worker_support": { @@ -720,7 +798,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#interface-formdata" + } + ] } } } diff --git a/api/GainNode.json b/api/GainNode.json index 8137af61b6b20f..c815f862d89b95 100644 --- a/api/GainNode.json +++ b/api/GainNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#GainNode" + } + ] }, "GainNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#GainNode" + } + ] } }, "gain": { @@ -153,7 +165,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-GainNode-gain" + } + ] } } } diff --git a/api/Gamepad.json b/api/Gamepad.json index c0c1dc8af5f20f..e63e0267344704 100644 --- a/api/Gamepad.json +++ b/api/Gamepad.json @@ -89,7 +89,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#gamepad-interface" + }, + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#gamepad-getvrdisplays-attribute" + }, + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#partial-gamepad-interface" + } + ] }, "Gamepad": { "__compat": { @@ -245,7 +259,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#widl-Gamepad-axes" + } + ] } }, "buttons": { @@ -337,7 +357,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#widl-Gamepad-buttons" + } + ] } }, "connected": { @@ -429,7 +455,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#widl-Gamepad-connected" + } + ] } }, "displayId": { @@ -474,7 +506,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#gamepad-getvrdisplays-attribute" + } + ] } }, "hand": { @@ -533,7 +571,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#partial-gamepad-interface" + } + ] } }, "hapticActuators": { @@ -592,7 +636,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#partial-gamepad-interface" + } + ] } }, "id": { @@ -677,7 +727,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#widl-Gamepad-id" + } + ] } }, "index": { @@ -762,7 +818,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#widl-Gamepad-index" + } + ] } }, "mapping": { @@ -854,7 +916,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#widl-Gamepad-mapping" + } + ] } }, "pose": { @@ -913,7 +981,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#partial-gamepad-interface" + } + ] } }, "timestamp": { @@ -1005,7 +1079,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#widl-Gamepad-timestamp" + } + ] } } } diff --git a/api/GamepadButton.json b/api/GamepadButton.json index d50dbecff4e882..24604a69d6abea 100644 --- a/api/GamepadButton.json +++ b/api/GamepadButton.json @@ -75,7 +75,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#gamepadbutton-interface" + } + ] }, "pressed": { "__compat": { @@ -152,7 +158,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#widl-GamepadButton-pressed" + } + ] } }, "value": { @@ -230,7 +242,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#widl-GamepadButton-value" + } + ] } }, "touched": { diff --git a/api/GamepadEvent.json b/api/GamepadEvent.json index 7e18fa209ac9f7..4e824d521628af 100644 --- a/api/GamepadEvent.json +++ b/api/GamepadEvent.json @@ -75,7 +75,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#gamepadevent-interface" + } + ] }, "gamepad": { "__compat": { @@ -152,7 +158,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/#widl-GamepadEvent-gamepad" + } + ] } } } diff --git a/api/GamepadHapticActuator.json b/api/GamepadHapticActuator.json index 64e6aa07c1a209..c788a5477b4efb 100644 --- a/api/GamepadHapticActuator.json +++ b/api/GamepadHapticActuator.json @@ -56,7 +56,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#gamepadhapticactuator-interface" + } + ] }, "pulse": { "__compat": { @@ -114,7 +120,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#gamepadhapticactuator-interface" + } + ] } }, "type": { @@ -173,7 +185,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#gamepadhapticactuator-interface" + } + ] } } } diff --git a/api/GamepadPose.json b/api/GamepadPose.json index 3ac6265f97911d..ee8c28cb8e344c 100644 --- a/api/GamepadPose.json +++ b/api/GamepadPose.json @@ -56,7 +56,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#gamepadpose-interface" + } + ] }, "angularAcceleration": { "__compat": { @@ -114,7 +120,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#dom-gamepadpose-angularacceleration" + } + ] } }, "angularVelocity": { @@ -173,7 +185,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#dom-gamepadpose-angularvelocity" + } + ] } }, "hasOrientation": { @@ -232,7 +250,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#dom-gamepadpose-hasorientation" + } + ] } }, "hasPosition": { @@ -291,7 +315,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#dom-gamepadpose-hasposition" + } + ] } }, "linearAcceleration": { @@ -350,7 +380,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#dom-gamepadpose-linearacceleration" + } + ] } }, "linearVelocity": { @@ -409,7 +445,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#dom-gamepadpose-linearvelocity" + } + ] } }, "orientation": { @@ -468,7 +510,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#dom-gamepadpose-orientation" + } + ] } }, "position": { @@ -527,7 +575,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gamepad", + "url": "https://w3c.github.io/gamepad/extensions.html#dom-gamepadpose-position" + } + ] } } } diff --git a/api/Geolocation.json b/api/Geolocation.json index b090f20d1674a7..347501b57cc759 100644 --- a/api/Geolocation.json +++ b/api/Geolocation.json @@ -277,7 +277,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#watch-position" + } + ] } } } diff --git a/api/GeometryUtils.json b/api/GeometryUtils.json index fc0dd0591ae3d4..f1b2836b609918 100644 --- a/api/GeometryUtils.json +++ b/api/GeometryUtils.json @@ -50,7 +50,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#the-geometryutils-interface" + } + ] }, "convertPointFromNode": { "__compat": { diff --git a/api/GlobalEventHandlers.json b/api/GlobalEventHandlers.json index 2093cabe702b44..961144ac964c28 100644 --- a/api/GlobalEventHandlers.json +++ b/api/GlobalEventHandlers.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Lock", + "url": "https://w3c.github.io/pointerlock/#extensions-to-the-document-interface" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#globaleventhandlers" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#globaleventhandlers" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#globaleventhandlers" + } + ] }, "onabort": { "__compat": { @@ -98,7 +116,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onabort" + } + ] } }, "onanimationcancel": { @@ -149,7 +173,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#eventdef-animationevent-animationcancel" + } + ] } }, "onanimationend": { @@ -218,7 +248,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#eventdef-animationevent-animationend" + } + ] } }, "onanimationiteration": { @@ -287,7 +323,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#eventdef-animationevent-animationiteration" + } + ] } }, "onanimationstart": { @@ -356,7 +398,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#eventdef-animationevent-animationstart" + } + ] } }, "onauxclick": { @@ -407,7 +455,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "UI Events", + "url": "https://w3c.github.io/uievents/#event-type-auxclick" + } + ] } }, "onblur": { @@ -458,7 +512,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onblur" + } + ] } }, "oncancel": { @@ -509,7 +569,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-oncancel" + } + ] } }, "oncanplay": { @@ -560,7 +626,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-oncanplay" + } + ] } }, "oncanplaythrough": { @@ -611,7 +683,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-oncanplaythrough" + } + ] } }, "onchange": { @@ -662,7 +740,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onchange" + } + ] } }, "onclick": { @@ -713,7 +797,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onclick" + } + ] } }, "onclose": { @@ -764,7 +854,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onclose" + } + ] } }, "oncontextmenu": { @@ -815,7 +911,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-oncontextmenu" + } + ] } }, "oncuechange": { @@ -866,7 +968,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-oncuechange" + } + ] } }, "ondblclick": { @@ -917,7 +1025,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-ondblclick" + } + ] } }, "ondrag": { @@ -968,7 +1082,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/indices.html#ix-handler-ondrag" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/index.html#ix-handler-ondrag" + } + ] } }, "ondragend": { @@ -1019,7 +1143,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/indices.html#ix-handler-ondragend" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/index.html#ix-handler-ondragend" + } + ] } }, "ondragenter": { @@ -1070,7 +1204,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/indices.html#ix-handler-ondragenter" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/index.html#ix-handler-ondragenter" + } + ] } }, "ondragexit": { @@ -1121,7 +1265,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/indices.html#ix-handler-ondragexit" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/index.html#ix-handler-ondragexit" + } + ] } }, "ondragleave": { @@ -1172,7 +1326,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/indices.html#ix-handler-ondragleave" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/index.html#ix-handler-ondragleave" + } + ] } }, "ondragover": { @@ -1223,7 +1387,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/indices.html#ix-handler-ondragover" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/index.html#ix-handler-ondragover" + } + ] } }, "ondragstart": { @@ -1274,7 +1448,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/indices.html#ix-handler-ondragstart" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/index.html#ix-handler-ondragstart" + } + ] } }, "ondrop": { @@ -1325,7 +1509,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/indices.html#ix-handler-ondrop" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/index.html#ix-handler-ondrop" + } + ] } }, "ondurationchange": { @@ -1376,7 +1570,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-ondurationchange" + } + ] } }, "onemptied": { @@ -1427,7 +1627,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-onemptied" + } + ] } }, "onended": { @@ -1478,7 +1684,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-onended" + } + ] } }, "onerror": { @@ -1529,7 +1741,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onerror" + } + ] } }, "onfocus": { @@ -1580,7 +1798,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onfocus" + } + ] } }, "ongotpointercapture": { @@ -1631,7 +1855,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#the-gotpointercapture-event" + } + ] } }, "oninput": { @@ -1682,7 +1912,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#ix-handler-oninput" + } + ] } }, "oninvalid": { @@ -1733,7 +1969,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-oninvalid" + } + ] } }, "onkeydown": { @@ -1784,7 +2026,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onkeydown" + } + ] } }, "onkeypress": { @@ -1835,7 +2083,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onkeypress" + } + ] } }, "onkeyup": { @@ -1886,7 +2140,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onkeyup" + } + ] } }, "onload": { @@ -1937,7 +2197,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onload" + } + ] } }, "onloadeddata": { @@ -1988,7 +2254,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-onloadeddata" + } + ] } }, "onloadedmetadata": { @@ -2039,7 +2311,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-onloadedmetadata" + } + ] } }, "onloadend": { @@ -2090,7 +2368,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onloadend" + } + ] } }, "onloadstart": { @@ -2149,7 +2433,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onloadstart" + } + ] } }, "onlostpointercapture": { @@ -2200,7 +2490,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#the-lostpointercapture-event" + } + ] } }, "onmousedown": { @@ -2251,7 +2547,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onmousedown" + } + ] } }, "onmouseenter": { @@ -2302,7 +2604,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-onmouseenter" + } + ] } }, "onmouseleave": { @@ -2353,7 +2661,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-onmouseleave" + } + ] } }, "onmousemove": { @@ -2404,7 +2718,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onmousemove" + } + ] } }, "onmouseout": { @@ -2455,7 +2775,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onmouseout" + } + ] } }, "onmouseover": { @@ -2506,7 +2832,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onmouseover" + } + ] } }, "onmouseup": { @@ -2557,7 +2889,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onmouseup" + } + ] } }, "onmousewheel": { @@ -2659,7 +2997,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-onpause" + } + ] } }, "onplay": { @@ -2710,7 +3054,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onplay" + } + ] } }, "onplaying": { @@ -2837,7 +3187,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-GlobalEventHandlers-onpointercancel" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-GlobalEventHandlers-onpointercancel" + } + ] } }, "onpointerdown": { @@ -2913,7 +3273,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-GlobalEventHandlers-onpointerdown" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-GlobalEventHandlers-onpointerdown" + } + ] } }, "onpointerenter": { @@ -2989,7 +3359,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-GlobalEventHandlers-onpointerenter" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-GlobalEventHandlers-onpointerenter" + } + ] } }, "onpointerleave": { @@ -3065,7 +3445,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-GlobalEventHandlers-onpointerleave" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-GlobalEventHandlers-onpointerleave" + } + ] } }, "onpointerlockchange": { @@ -3243,7 +3633,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-GlobalEventHandlers-onpointermove" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-GlobalEventHandlers-onpointermove" + } + ] } }, "onpointerout": { @@ -3319,7 +3719,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-GlobalEventHandlers-onpointerout" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-GlobalEventHandlers-onpointerout" + } + ] } }, "onpointerover": { @@ -3395,7 +3805,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-GlobalEventHandlers-onpointerover" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-GlobalEventHandlers-onpointerover" + } + ] } }, "onpointerup": { @@ -3471,7 +3891,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-GlobalEventHandlers-onpointerup" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-GlobalEventHandlers-onpointerup" + } + ] } }, "onprogress": { @@ -3624,7 +4054,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onreset" + } + ] } }, "onresize": { @@ -3675,7 +4111,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onresize" + } + ] } }, "onscroll": { @@ -3726,7 +4168,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-onscroll" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#event-type-scroll" + } + ] } }, "onseeked": { @@ -3879,7 +4331,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onselect" + } + ] } }, "onselectionchange": { @@ -3954,7 +4412,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#dom-globaleventhandlers-onselectionchange" + } + ] } }, "onselectstart": { @@ -4029,7 +4493,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#dom-globaleventhandlers-onselectstart" + } + ] } }, "onshow": { @@ -4233,7 +4703,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onsubmit" + } + ] } }, "onsuspend": { @@ -4386,7 +4862,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-GlobalEventHandlers-ontouchcancel" + } + ] } }, "ontouchend": { @@ -4437,7 +4919,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-GlobalEventHandlers-ontouchend" + } + ] } }, "ontouchmove": { @@ -4488,7 +4976,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-GlobalEventHandlers-ontouchmove" + } + ] } }, "ontouchstart": { @@ -4539,7 +5033,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-GlobalEventHandlers-ontouchstart" + } + ] } }, "ontransitioncancel": { @@ -4590,7 +5090,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#ontransitioncancel" + } + ] } }, "ontransitionend": { @@ -4644,7 +5150,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#ontransitionend" + } + ] } }, "ontransitionrun": { @@ -4899,7 +5411,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onwheel" + } + ] } } } diff --git a/api/Gyroscope.json b/api/Gyroscope.json index c18b02f14577e9..e98449bedd4852 100644 --- a/api/Gyroscope.json +++ b/api/Gyroscope.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gyroscope", + "url": "https://www.w3.org/TR/gyroscope/#gyroscope-interface" + } + ] }, "Gyroscope": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gyroscope", + "url": "https://www.w3.org/TR/gyroscope/#dom-gyroscope-gyroscope" + } + ] } }, "x": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gyroscope", + "url": "https://www.w3.org/TR/gyroscope/#gyroscope-x" + } + ] } }, "y": { @@ -201,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gyroscope", + "url": "https://www.w3.org/TR/gyroscope/#gyroscope-y" + } + ] } }, "z": { @@ -252,7 +276,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Gyroscope", + "url": "https://www.w3.org/TR/gyroscope/#gyroscope-z" + } + ] } } } diff --git a/api/HTMLAnchorElement.json b/api/HTMLAnchorElement.json index b2b51eb1ffde72..8cba88593853f8 100644 --- a/api/HTMLAnchorElement.json +++ b/api/HTMLAnchorElement.json @@ -48,7 +48,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlanchorelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-a-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-48250443" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-48250443" + } + ] }, "accessKey": { "__compat": { @@ -149,7 +171,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/multipage/text-level-semantics.html#dom-a-download" + } + ] } }, "hreflang": { @@ -302,7 +330,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + } + ] } }, "rel": { @@ -353,7 +387,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#dom-a-rel" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-3815891" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-3815891" + } + ] } }, "relList": { @@ -404,7 +452,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-a-rellist" + } + ] } }, "tabindex": { diff --git a/api/HTMLAreaElement.json b/api/HTMLAreaElement.json index ccf2bb40e6100e..634cf0ef0bf5ec 100644 --- a/api/HTMLAreaElement.json +++ b/api/HTMLAreaElement.json @@ -48,7 +48,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlareaelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-area-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-26019118" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-26019118" + } + ] }, "accessKey": { "__compat": { @@ -455,7 +477,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + } + ] } }, "rel": { @@ -506,7 +534,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-area-rel" + } + ] } }, "relList": { @@ -557,7 +591,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-area-rellist" + } + ] } }, "shape": { diff --git a/api/HTMLAudioElement.json b/api/HTMLAudioElement.json index a5d8c6983e91dd..e3c1693e6a9c16 100644 --- a/api/HTMLAudioElement.json +++ b/api/HTMLAudioElement.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlaudioelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-audio-element" + } + ] }, "mozCurrentSampleOffset": { "__compat": { diff --git a/api/HTMLBRElement.json b/api/HTMLBRElement.json index e3eeeb07c4825d..4bebc880c1491e 100644 --- a/api/HTMLBRElement.json +++ b/api/HTMLBRElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlbrelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-br-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-56836063" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-56836063" + } + ] }, "clear": { "__compat": { diff --git a/api/HTMLBaseElement.json b/api/HTMLBaseElement.json index 71ed8a705441ad..cf905f227ce311 100644 --- a/api/HTMLBaseElement.json +++ b/api/HTMLBaseElement.json @@ -48,7 +48,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlbaseelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/document-metadata.html#the-base-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-base-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-73629039" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-73629039" + } + ] }, "href": { "__compat": { diff --git a/api/HTMLBodyElement.json b/api/HTMLBodyElement.json index e80f8e391b06f2..afd10c1626a239 100644 --- a/api/HTMLBodyElement.json +++ b/api/HTMLBodyElement.json @@ -48,7 +48,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlbodyelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sections.html#the-body-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-body-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-62018039" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-62018039" + } + ] }, "aLink": { "__compat": { diff --git a/api/HTMLButtonElement.json b/api/HTMLButtonElement.json index 5ffd5cd6037f4e..1891c4716eadb2 100644 --- a/api/HTMLButtonElement.json +++ b/api/HTMLButtonElement.json @@ -48,7 +48,33 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/sec-forms.html#htmlbuttonelement-htmlbuttonelement" + }, + { + "name": "HTML5.2", + "url": "https://www.w3.org/TR/html52/sec-forms.html#htmlbuttonelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sec-forms.html#htmlbuttonelement-htmlbuttonelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-button-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-34812697" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-34812697" + } + ] }, "accessKey": { "__compat": { @@ -559,7 +585,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-lfe-labels" + } + ] } }, "menu": { diff --git a/api/HTMLCanvasElement.json b/api/HTMLCanvasElement.json index c5a416fbc31d5f..f095d6b4425ae9 100644 --- a/api/HTMLCanvasElement.json +++ b/api/HTMLCanvasElement.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture DOM Elements", + "url": "https://w3c.github.io/mediacapture-fromelement/#html-media-element-media-capture-extensions" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlcanvaselement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/scripting-1.html#the-canvas-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#the-canvas-element" + } + ] }, "height": { "__compat": { @@ -100,7 +118,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#attr-canvas-height" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/scripting-1.html#attr-canvas-height" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#attr-canvas-height" + } + ] } }, "mozOpaque": { @@ -202,7 +234,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#attr-canvas-width" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/scripting-1.html#attr-canvas-width" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#attr-canvas-width" + } + ] } }, "captureStream": { @@ -253,7 +299,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture DOM Elements", + "url": "https://w3c.github.io/mediacapture-fromelement/#widl-HTMLCanvasElement-captureStream-CanvasCaptureMediaStream-double-frameRate" + } + ] } }, "getContext": { @@ -304,7 +356,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-canvas-getcontext" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/scripting-1.html#dom-canvas-getcontext" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#dom-canvas-getcontext" + } + ] }, "webgl_context": { "__compat": { @@ -795,7 +861,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-canvas-toblob" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/scripting-1.html#dom-canvas-toblob" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#dom-canvas-toblob" + } + ] }, "Image_quality": { "__compat": { @@ -897,7 +977,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-canvas-todataurl" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/scripting-1.html#dom-canvas-todataurl" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#dom-canvas-todataurl" + } + ] } }, "transferControlToOffscreen": { diff --git a/api/HTMLCollection.json b/api/HTMLCollection.json index 48b56cde2c199b..8b02890c8a2e83 100644 --- a/api/HTMLCollection.json +++ b/api/HTMLCollection.json @@ -45,7 +45,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#htmlcollection" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-75708506" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-75708506" + } + ] }, "length": { "__compat": { diff --git a/api/HTMLDListElement.json b/api/HTMLDListElement.json index e7526941d8e9f1..d6dfe79d95d44b 100644 --- a/api/HTMLDListElement.json +++ b/api/HTMLDListElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmldlistelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-dl-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-52368974" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-52368974" + } + ] }, "compact": { "__compat": { diff --git a/api/HTMLDataElement.json b/api/HTMLDataElement.json index 54a835ed0fe1c0..a63908d17e9225 100644 --- a/api/HTMLDataElement.json +++ b/api/HTMLDataElement.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmldataelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-data-element" + } + ] }, "value": { "__compat": { @@ -98,7 +108,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-data-value" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#dom-data-value" + } + ] } } } diff --git a/api/HTMLDataListElement.json b/api/HTMLDataListElement.json index 8daa848b2b9118..7d61303fc2215f 100644 --- a/api/HTMLDataListElement.json +++ b/api/HTMLDataListElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmldatalistelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-datalist-element" + } + ] }, "options": { "__compat": { diff --git a/api/HTMLDialogElement.json b/api/HTMLDialogElement.json index 36f8f9923a0e55..8a5806246af564 100644 --- a/api/HTMLDialogElement.json +++ b/api/HTMLDialogElement.json @@ -64,7 +64,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmldialogelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/interactive-elements.html#the-dialog-element" + } + ] }, "open": { "__compat": { @@ -130,7 +140,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-dialog-open" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/interactive-elements.html#dom-htmldialogelement-open" + } + ] } }, "returnValue": { @@ -197,7 +217,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-dialog-returnvalue" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/interactive-elements.html#dom-htmldialogelement-returnvalue" + } + ] } }, "close": { @@ -264,7 +294,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-dialog-close" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/interactive-elements.html#dom-htmldialogelement-close" + } + ] } }, "show": { @@ -331,7 +371,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-dialog-show" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/interactive-elements.html#dom-htmldialogelement-show" + } + ] } }, "showModal": { @@ -398,7 +448,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-dialog-showmodal" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/interactive-elements.html#dom-htmldialogelement-showmodal" + } + ] } } } diff --git a/api/HTMLDivElement.json b/api/HTMLDivElement.json index a9ff2e69dec82d..55e54496984a52 100644 --- a/api/HTMLDivElement.json +++ b/api/HTMLDivElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmldivelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-div-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-22445964" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-22445964" + } + ] }, "align": { "__compat": { diff --git a/api/HTMLDocument.json b/api/HTMLDocument.json index 87d6023f96c584..41f344ff622ca5 100644 --- a/api/HTMLDocument.json +++ b/api/HTMLDocument.json @@ -45,7 +45,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmldocument" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-26809268" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-26809268" + } + ] } } } diff --git a/api/HTMLElement.json b/api/HTMLElement.json index 9d8b36b26ce0cf..0d7c490334e848 100644 --- a/api/HTMLElement.json +++ b/api/HTMLElement.json @@ -45,7 +45,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#extensions-to-the-htmlelement-interface" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/elements.html#htmlelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#htmlelement" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-011100101" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-011100101" + } + ] }, "accessKey": { "__compat": { @@ -140,7 +162,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-accesskeylabel" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/editing.html#dom-accesskeylabel" + } + ] } }, "blur": { @@ -188,7 +220,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/editing.html#dom-blur" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#blur()-0" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/editing.html#dom-blur" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-28216144" + } + ] } }, "click": { @@ -241,7 +291,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-2651361" + } + ] } }, "contentEditable": { @@ -289,7 +345,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#contenteditable" + } + ] } }, "contextMenu": { @@ -385,7 +447,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#dom-dataset" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/dom.html#dom-dataset" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#dom-dataset" + } + ] } }, "dir": { @@ -433,7 +509,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-dir" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-52460740" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-52460740" + } + ] } }, "draggable": { @@ -577,7 +667,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/editing.html#dom-focus" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#focus()-0" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/editing.html#dom-focus" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-32130014" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#method-focus" + } + ] } }, "forceSpellCheck": { @@ -673,7 +785,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-hidden" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#the-hidden-attribute" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/editing.html#the-hidden-attribute" + } + ] } }, "inert": { @@ -769,7 +895,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/editing.html#dom-iscontenteditable" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#dom-iscontenteditable" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/editing.html#dom-iscontenteditable" + } + ] } }, "itemId": { @@ -1111,7 +1251,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-59132807" + } + ] } }, "noModule": { @@ -1207,7 +1353,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#attr-nonce" + } + ] } }, "offsetHeight": { @@ -1255,7 +1407,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-htmlelement-offsetHeight" + } + ] } }, "offsetLeft": { @@ -1303,7 +1461,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-htmlelement-offsetleft" + } + ] } }, "offsetParent": { @@ -1351,7 +1515,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-htmlelement-offsetparent" + } + ] } }, "offsetTop": { @@ -1399,7 +1569,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-htmlelement-offsetwidth" + } + ] } }, "offsetWidth": { @@ -1447,7 +1623,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-htmlelement-offsetwidth" + } + ] } }, "onModule": { @@ -1832,7 +2014,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-tabindex" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-40676705" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-40676705" + } + ] } }, "title": { @@ -1880,7 +2076,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-title" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-78276800" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-78276800" + } + ] } }, "translate": { diff --git a/api/HTMLEmbedElement.json b/api/HTMLEmbedElement.json index 6f46de8c59bb0b..e4e33c09aac325 100644 --- a/api/HTMLEmbedElement.json +++ b/api/HTMLEmbedElement.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlembedelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-embed-element" + } + ] } } } diff --git a/api/HTMLFieldSetElement.json b/api/HTMLFieldSetElement.json index e48262f7e99345..68ea8a3cd53887 100644 --- a/api/HTMLFieldSetElement.json +++ b/api/HTMLFieldSetElement.json @@ -45,7 +45,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlfieldsetelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/forms.html#the-fieldset-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-fieldset-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-7365882" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-7365882" + } + ] }, "disabled": { "__compat": { diff --git a/api/HTMLFormControlsCollection.json b/api/HTMLFormControlsCollection.json index 494e554cecb8c8..f8215861cdb242 100644 --- a/api/HTMLFormControlsCollection.json +++ b/api/HTMLFormControlsCollection.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/infrastructure.html#htmlformcontrolscollection" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/infrastructure.html#htmlformcontrolscollection" + } + ] }, "namedItem": { "__compat": { @@ -108,7 +118,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-htmlformcontrolscollection-nameditem" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/infrastructure.html#htmlformcontrolscollection" + } + ] } } } diff --git a/api/HTMLFormElement.json b/api/HTMLFormElement.json index 284b67eaf1f051..7406241f94178a 100644 --- a/api/HTMLFormElement.json +++ b/api/HTMLFormElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlformelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-form-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-40002357" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-40002357" + } + ] }, "acceptCharset": { "__compat": { @@ -302,7 +320,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-form-elements" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-76728479" + } + ] } }, "encoding": { @@ -659,7 +687,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-cva-reportvalidity" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/semantics.html#the-constraint-validation-api" + } + ] } }, "requestAutocomplete": { diff --git a/api/HTMLFrameSetElement.json b/api/HTMLFrameSetElement.json index d1053cfc08d50f..8869c275a198a1 100644 --- a/api/HTMLFrameSetElement.json +++ b/api/HTMLFrameSetElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlframesetelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/obsolete.html#htmlframesetelement" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-ID-43829095" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-43829095" + } + ] }, "event_handlers": { "__compat": { diff --git a/api/HTMLHRElement.json b/api/HTMLHRElement.json index 929992f4f15d9d..5a03af9639aac1 100644 --- a/api/HTMLHRElement.json +++ b/api/HTMLHRElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlhrelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-hr-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-68228811" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-68228811" + } + ] } } } diff --git a/api/HTMLHeadElement.json b/api/HTMLHeadElement.json index 13f63d182d1bfd..0c7cafeda2513b 100644 --- a/api/HTMLHeadElement.json +++ b/api/HTMLHeadElement.json @@ -48,7 +48,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlheadelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/document-metadata.html#the-head-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-head-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-77253168" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-77253168" + } + ] }, "profile": { "__compat": { diff --git a/api/HTMLHeadingElement.json b/api/HTMLHeadingElement.json index 589b266059d967..66f088fa6b138a 100644 --- a/api/HTMLHeadingElement.json +++ b/api/HTMLHeadingElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlheadingelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-43345119" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-43345119" + } + ] }, "align": { "__compat": { diff --git a/api/HTMLHtmlElement.json b/api/HTMLHtmlElement.json index 49f527496308db..ab7ad55fe78765 100644 --- a/api/HTMLHtmlElement.json +++ b/api/HTMLHtmlElement.json @@ -48,7 +48,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlhtmlelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/semantics.html#the-html-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/semantics.html#the-html-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-33759296" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-33759296" + } + ] } } } diff --git a/api/HTMLHyperlinkElementUtils.json b/api/HTMLHyperlinkElementUtils.json index fa62bc1c880c45..c192433f3ce5fd 100644 --- a/api/HTMLHyperlinkElementUtils.json +++ b/api/HTMLHyperlinkElementUtils.json @@ -50,7 +50,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlhyperlinkelementutils" + } + ] }, "hash": { "__compat": { @@ -102,7 +108,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-hash" + } + ] } }, "host": { @@ -156,7 +168,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-host" + } + ] } }, "hostname": { @@ -209,7 +227,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-hostname" + } + ] } }, "href": { @@ -262,7 +286,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-href" + } + ] } }, "origin": { @@ -321,7 +351,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-origin" + } + ] } }, "password": { @@ -368,7 +404,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-password" + } + ] } }, "pathname": { @@ -427,7 +469,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-pathname" + } + ] } }, "port": { @@ -480,7 +528,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-port" + } + ] } }, "protocol": { @@ -533,7 +587,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-protocol" + } + ] } }, "search": { @@ -592,7 +652,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-search" + } + ] } }, "toString": { @@ -642,7 +708,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlhyperlinkelementutils" + } + ] } }, "username": { @@ -689,7 +761,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-username" + } + ] } } } diff --git a/api/HTMLIFrameElement.json b/api/HTMLIFrameElement.json index f070939e9029fc..aa21bc876da8fc 100644 --- a/api/HTMLIFrameElement.json +++ b/api/HTMLIFrameElement.json @@ -45,7 +45,37 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Feature Policy", + "url": "https://wicg.github.io/feature-policy/#dom-htmliframeelement-allow" + }, + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentrequest-and-iframe-elements" + }, + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmliframeelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-iframe-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-50708718" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-50708718" + } + ] }, "addNextPaintListener": { "__compat": { @@ -315,7 +345,21 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentrequest-and-iframe-elements" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-iframe-allowpaymentrequest" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-50708718" + } + ] } }, "clearMatch": { @@ -412,7 +456,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-iframe-contentdocument" + } + ] } }, "contentWindow": { @@ -460,7 +510,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-iframe-contentwindow" + } + ] } }, "csp": { @@ -508,7 +564,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/embedded/#dom-htmliframeelement-csp" + } + ] } }, "download": { @@ -1802,7 +1864,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-iframe-referrerpolicy" + } + ] } }, "reload": { diff --git a/api/HTMLImageElement.json b/api/HTMLImageElement.json index b8a136fd94dad1..d44b8b3a03692c 100644 --- a/api/HTMLImageElement.json +++ b/api/HTMLImageElement.json @@ -45,7 +45,33 @@ "deprecated": false, "experimental": false, "standard_track": true - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + }, + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#excensions-to-the-htmlimageelement-interface" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlimageelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-img-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-17701901" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-17701901" + } + ] }, "Image": { "__compat": { @@ -90,7 +116,13 @@ "deprecated": false, "standard_track": true, "experimental": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-image" + } + ] } }, "complete": { @@ -300,7 +332,13 @@ "deprecated": false, "experimental": false, "standard_track": true - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-img-decoding" + } + ] } }, "lowSrc": { @@ -532,7 +570,13 @@ "deprecated": false, "experimental": false, "standard_track": true - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + } + ] } }, "sizes": { diff --git a/api/HTMLInputElement.json b/api/HTMLInputElement.json index 13f0d11cb41d70..67ab7f4e133fe6 100644 --- a/api/HTMLInputElement.json +++ b/api/HTMLInputElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlinputelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-input-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-6043025" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-6043025" + } + ] }, "autocomplete": { "__compat": { @@ -1156,7 +1174,21 @@ "deprecated": false, "experimental": false, "standard_track": true - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-textarea/input-setselectionrange" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/forms.html#dom-textarea/input-setselectionrange" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-textarea/input-setselectionrange" + } + ] } }, "stepDown": { diff --git a/api/HTMLLIElement.json b/api/HTMLLIElement.json index 1fdfbe2493deea..fefc4e1f8b67dc 100644 --- a/api/HTMLLIElement.json +++ b/api/HTMLLIElement.json @@ -44,7 +44,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmllielement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-li-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-74680021" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-74680021" + } + ] } } } diff --git a/api/HTMLLabelElement.json b/api/HTMLLabelElement.json index 3f1896a2e176e6..3efb243b649345 100644 --- a/api/HTMLLabelElement.json +++ b/api/HTMLLabelElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmllabelelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-label-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-13691394" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-13691394" + } + ] }, "control": { "__compat": { @@ -92,7 +110,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-label-control" + } + ] } }, "form": { @@ -140,7 +164,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-label-form" + } + ] } }, "htmlFor": { @@ -188,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-label-htmlfor" + } + ] } } } diff --git a/api/HTMLLegendElement.json b/api/HTMLLegendElement.json index 791927ade2639e..6baea75f0b9498 100644 --- a/api/HTMLLegendElement.json +++ b/api/HTMLLegendElement.json @@ -42,7 +42,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmllegendelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/forms.html#the-legend-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-legend-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-21482039" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-21482039" + } + ] } } } diff --git a/api/HTMLLinkElement.json b/api/HTMLLinkElement.json index c05ba0f83cea25..eb00f82f7084ee 100644 --- a/api/HTMLLinkElement.json +++ b/api/HTMLLinkElement.json @@ -45,7 +45,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmllinkelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/document-metadata.html#the-link-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-link-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-35143001" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-35143001" + } + ] }, "as": { "__compat": { @@ -92,7 +114,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Preload", + "url": "https://w3c.github.io/preload/#as-attribute" + } + ] } }, "crossOrigin": { @@ -188,7 +216,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + } + ] } }, "rel": { @@ -236,7 +270,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#attr-link-rel" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-41369587" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-41369587" + } + ] } }, "relList": { @@ -284,7 +332,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#dom-link-rellist" + } + ] } }, "sizes": { diff --git a/api/HTMLMapElement.json b/api/HTMLMapElement.json index cd2a2fa02f0452..664a9452d07088 100644 --- a/api/HTMLMapElement.json +++ b/api/HTMLMapElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlmapelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-map-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-94109203" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-94109203" + } + ] }, "areas": { "__compat": { diff --git a/api/HTMLMediaElement.json b/api/HTMLMediaElement.json index cc49a1cf90bdc9..d2c681de055ef9 100644 --- a/api/HTMLMediaElement.json +++ b/api/HTMLMediaElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/the-video-element.html#htmlmediaelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + }, + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#introduction" + }, + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#htmlmediaelement-extensions" + } + ] }, "addTextTrack": { "__compat": { @@ -93,7 +111,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-audiotracks" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "autoplay": { @@ -141,7 +169,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-autoplay" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "buffered": { @@ -189,7 +227,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#media-elements" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "canPlayType": { @@ -237,7 +285,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-canplaytype" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "captureStream": { @@ -281,7 +339,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture DOM Elements", + "url": "https://w3c.github.io/mediacapture-fromelement/#widl-HTMLMediaElement-captureStream-MediaStream" + } + ] } }, "controller": { @@ -311,7 +375,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "controls": { @@ -359,7 +429,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-controls" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "controlsList": { @@ -441,7 +521,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#attr-media-crossorigin" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "currentSrc": { @@ -489,7 +579,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-currentsrc" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "currentTime": { @@ -537,7 +637,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-currenttime" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "defaultMuted": { @@ -582,7 +692,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-defaultmuted" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "defaultPlaybackRate": { @@ -618,7 +738,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-defaultplaybackrate" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "disableRemotePlayback": { @@ -666,7 +796,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#embedded-content-0.html#htmlmediaelement" + } + ] } }, "duration": { @@ -714,7 +850,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-duration" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "ended": { @@ -762,7 +908,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-ended" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "error": { @@ -810,7 +966,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-error" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "fastSeek": { @@ -834,7 +1000,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-fastseek" + } + ] } }, "initialTime": { @@ -908,7 +1080,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/media.html#dom-media-load" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/semantics-embedded-content.html#dom-htmlmediaelement-load" + } + ] } }, "loop": { @@ -944,7 +1126,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-loop" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "mediaGroup": { @@ -974,7 +1166,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "mediaKeys": { @@ -1308,7 +1506,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-muted" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "networkState": { @@ -1359,7 +1567,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-networkstate" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "onerror": { @@ -1407,7 +1625,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onerror" + } + ] } }, "onencrypted": { @@ -1539,7 +1763,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-pause" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-media-pause" + } + ] } }, "paused": { @@ -1587,7 +1821,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-paused" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "play": { @@ -1635,7 +1879,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-play" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-media-play" + } + ] } }, "playbackRate": { @@ -1671,7 +1925,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-playbackrate" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "played": { @@ -1841,7 +2105,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-readystate" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } }, "seekToNextFrame": { @@ -1915,7 +2189,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/the-video-element.html#dom-media-seekable" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-media-seekable" + }, + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#htmlmediaelement-extensions" + } + ] } }, "seeking": { @@ -1974,7 +2262,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#dom-htmlmediaelement-setmediakeys" + } + ] } }, "setSinkId": { @@ -2001,7 +2295,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Audio Output", + "url": "https://w3c.github.io/mediacapture-output/#dom-htmlmediaelement-setsinkid" + } + ] } }, "sinkId": { @@ -2028,7 +2328,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Audio Output", + "url": "https://w3c.github.io/mediacapture-output/#dom-htmlmediaelement-sinkid" + } + ] } }, "src": { @@ -2076,7 +2382,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-src" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-media-src" + } + ] } }, "srcObject": { @@ -2129,7 +2445,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-srcobject" + } + ] } }, "textTracks": { @@ -2185,7 +2507,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-videotracks" + } + ] } }, "volume": { @@ -2233,7 +2561,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-media-volume" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#htmlmediaelement" + } + ] } } } diff --git a/api/HTMLMetaElement.json b/api/HTMLMetaElement.json index bfc216d1f7c196..a7a20d906dd52c 100644 --- a/api/HTMLMetaElement.json +++ b/api/HTMLMetaElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlmetaelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-meta-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-37041454" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-37041454" + } + ] } } } diff --git a/api/HTMLMeterElement.json b/api/HTMLMeterElement.json index db105473d64eaa..d08dace4449164 100644 --- a/api/HTMLMeterElement.json +++ b/api/HTMLMeterElement.json @@ -36,7 +36,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlmeterelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/forms.html#the-meter-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-meter-element" + } + ] }, "high": { "__compat": { @@ -293,7 +307,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-lfe-labels" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-lfe-labels" + } + ] } } } diff --git a/api/HTMLModElement.json b/api/HTMLModElement.json index 0c7ece49ae0364..6fb557be954554 100644 --- a/api/HTMLModElement.json +++ b/api/HTMLModElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/edits.html#htmlmodelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/edits.html#htmlmodelement" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-79359609" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-79359609" + } + ] }, "cite": { "__compat": { diff --git a/api/HTMLOListElement.json b/api/HTMLOListElement.json index 820f532576bd04..a696af0bcb00e9 100644 --- a/api/HTMLOListElement.json +++ b/api/HTMLOListElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlolistelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-ol-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-58056027" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-58056027" + } + ] }, "reversed": { "__compat": { diff --git a/api/HTMLObjectElement.json b/api/HTMLObjectElement.json index 68abfc1ac75501..3981ef3935e4ff 100644 --- a/api/HTMLObjectElement.json +++ b/api/HTMLObjectElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlobjectelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-object-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-9893177" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-9893177" + } + ] }, "align": { "__compat": { @@ -860,7 +878,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-object-typemustmatch" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-object-typemustmatch" + } + ] } }, "useMap": { diff --git a/api/HTMLOptGroupElement.json b/api/HTMLOptGroupElement.json index 0cb888fb50d99b..dbc078aa4e42fa 100644 --- a/api/HTMLOptGroupElement.json +++ b/api/HTMLOptGroupElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmloptgroupelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-optgroup-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-ID-38450247" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-38450247" + } + ] }, "disabled": { "__compat": { diff --git a/api/HTMLOptionElement.json b/api/HTMLOptionElement.json index 0cdac13945debe..6884243d7a4bf3 100644 --- a/api/HTMLOptionElement.json +++ b/api/HTMLOptionElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmloptionelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-option-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-70901257" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-70901257" + } + ] }, "defaultSelected": { "__compat": { diff --git a/api/HTMLOutputElement.json b/api/HTMLOutputElement.json index 55c0755267c76f..b669afdf21190f 100644 --- a/api/HTMLOutputElement.json +++ b/api/HTMLOutputElement.json @@ -48,7 +48,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmloutputelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/forms.html#the-output-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-output-element" + } + ] }, "defaultValue": { "__compat": { @@ -239,7 +253,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-lfe-labels" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-lfe-labels" + } + ] } }, "name": { diff --git a/api/HTMLParagraphElement.json b/api/HTMLParagraphElement.json index f5e8bb1659a8a1..659d839efb0b89 100644 --- a/api/HTMLParagraphElement.json +++ b/api/HTMLParagraphElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlparagraphelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-p-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-84675076" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-84675076" + } + ] }, "align": { "__compat": { diff --git a/api/HTMLParamElement.json b/api/HTMLParamElement.json index a3dd093e3fafbc..8cdc3da5f50553 100644 --- a/api/HTMLParamElement.json +++ b/api/HTMLParamElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlparamelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-param-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-64077273" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-64077273" + } + ] }, "name": { "__compat": { diff --git a/api/HTMLPictureElement.json b/api/HTMLPictureElement.json index b5e067208023c9..45df6126e6bd97 100644 --- a/api/HTMLPictureElement.json +++ b/api/HTMLPictureElement.json @@ -74,7 +74,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlpictureelement" + } + ] } } } diff --git a/api/HTMLPreElement.json b/api/HTMLPreElement.json index 7125e9c52ae6d0..2e21df704a99e7 100644 --- a/api/HTMLPreElement.json +++ b/api/HTMLPreElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlpreelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-pre-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-11383425" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-11383425" + } + ] }, "width": { "__compat": { diff --git a/api/HTMLProgressElement.json b/api/HTMLProgressElement.json index 88ed5e5a84ceb8..ba11bc03891a72 100644 --- a/api/HTMLProgressElement.json +++ b/api/HTMLProgressElement.json @@ -45,7 +45,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlprogresselement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/forms.html#the-progress-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-progress-element" + } + ] }, "max": { "__compat": { @@ -236,7 +250,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-lfe-labels" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-lfe-labels" + } + ] } } } diff --git a/api/HTMLQuoteElement.json b/api/HTMLQuoteElement.json index 5e736aa36c396e..5fc145674509b6 100644 --- a/api/HTMLQuoteElement.json +++ b/api/HTMLQuoteElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlquoteelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-blockquote-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-70319763" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-70319763" + } + ] }, "cite": { "__compat": { diff --git a/api/HTMLScriptElement.json b/api/HTMLScriptElement.json index cdb56ded2032fd..90d31b8fccef9e 100644 --- a/api/HTMLScriptElement.json +++ b/api/HTMLScriptElement.json @@ -45,7 +45,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlscriptelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/scripting-1.html#the-script-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#the-script-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-81598695" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-81598695" + } + ] }, "async": { "__compat": { diff --git a/api/HTMLSelectElement.json b/api/HTMLSelectElement.json index ce8ce30043439e..6dcc7cc8280460 100644 --- a/api/HTMLSelectElement.json +++ b/api/HTMLSelectElement.json @@ -46,7 +46,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlselectelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#htmlselectelement" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-94282980" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-94282980" + } + ] }, "autofocus": { "__compat": { @@ -93,7 +111,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-fe-autofocus" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#dom-htmlinputelement-autofocus" + } + ] } }, "disabled": { @@ -141,7 +169,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-fe-disabled" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-select-disabled" + } + ] } }, "form": { @@ -189,7 +227,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-fae-form" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-select-form" + } + ] } }, "labels": { @@ -237,7 +285,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-lfe-labels" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-lfe-labels" + } + ] } }, "length": { @@ -525,7 +583,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-select-selectedindex" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-select-selectedindex" + } + ] } }, "selectedOptions": { @@ -573,7 +641,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/form-elements.html#dom-select-selectedoptions" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-select-selectedoptions" + } + ] } }, "size": { @@ -669,7 +747,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-select-type" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-select-type" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-58783172" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-58783172" + } + ] } }, "validationMessage": { @@ -909,7 +1005,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-select-add" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-select-add" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-14493106" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-14493106" + } + ] }, "index_before_parameter": { "__compat": { @@ -1053,7 +1167,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-cva-checkvalidity" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-cva-checkvalidity" + } + ] } }, "focus": { @@ -1149,7 +1273,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-select-item" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-select-item" + } + ] } }, "namedItem": { @@ -1199,7 +1333,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-select-nameditem" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-select-nameditem" + } + ] } }, "remove": { @@ -1247,7 +1391,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-select-remove" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-select-remove" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-33404570" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-33404570" + } + ] } }, "setCustomValidity": { @@ -1295,7 +1457,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-cva-setcustomvalidity" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-cva-setcustomvalidity" + } + ] } } } diff --git a/api/HTMLSlotElement.json b/api/HTMLSlotElement.json index d5de3977798c58..7c9033954aefd5 100644 --- a/api/HTMLSlotElement.json +++ b/api/HTMLSlotElement.json @@ -106,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#htmlslotelement" + } + ] }, "name": { "__compat": { @@ -214,7 +220,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-slot-name" + } + ] } }, "assignedNodes": { @@ -323,7 +335,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-slot-assignednodes" + } + ] } } } diff --git a/api/HTMLSourceElement.json b/api/HTMLSourceElement.json index c7d2bda57121e6..ed479923c4c832 100644 --- a/api/HTMLSourceElement.json +++ b/api/HTMLSourceElement.json @@ -45,7 +45,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#dom-sourcekeysystem" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlsourceelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-source-element" + } + ] }, "keySystem": { "__compat": { diff --git a/api/HTMLSpanElement.json b/api/HTMLSpanElement.json index 5b682b5e85a633..862c3b4cd6ef8c 100644 --- a/api/HTMLSpanElement.json +++ b/api/HTMLSpanElement.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlspanelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-span-element" + } + ] } } } diff --git a/api/HTMLStyleElement.json b/api/HTMLStyleElement.json index 3b254010de26ae..4dacd337803f07 100644 --- a/api/HTMLStyleElement.json +++ b/api/HTMLStyleElement.json @@ -48,7 +48,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlstyleelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/document-metadata.html#the-style-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-style-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-16428977" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-16428977" + } + ] }, "media": { "__compat": { @@ -98,7 +120,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#attr-style-media" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/semantics.html#attr-style-media" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/semantics.html#attr-style-media" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-16428977" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-16428977" + } + ] } }, "type": { diff --git a/api/HTMLTableCaptionElement.json b/api/HTMLTableCaptionElement.json index cb3da364acc489..9b41f57cdc964a 100644 --- a/api/HTMLTableCaptionElement.json +++ b/api/HTMLTableCaptionElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tabular-data.html#htmltablecaptionelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-caption-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-12035137" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-12035137" + } + ] }, "align": { "__compat": { diff --git a/api/HTMLTableCellElement.json b/api/HTMLTableCellElement.json index ded769f7ce2e85..d09db410fa1d0f 100644 --- a/api/HTMLTableCellElement.json +++ b/api/HTMLTableCellElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tabular-data.html#htmltablecellelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#htmltablecellelement" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-82915075" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-82915075" + } + ] }, "abbr": { "__compat": { diff --git a/api/HTMLTableColElement.json b/api/HTMLTableColElement.json index 47e70902466cef..643905505f6bf7 100644 --- a/api/HTMLTableColElement.json +++ b/api/HTMLTableColElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tabular-data.html#htmltablecolelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#htmltablecolelement" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-84150186" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-84150186" + } + ] }, "align": { "__compat": { diff --git a/api/HTMLTableElement.json b/api/HTMLTableElement.json index 59c77e1c601a70..b62e8e4b6c45c8 100644 --- a/api/HTMLTableElement.json +++ b/api/HTMLTableElement.json @@ -42,7 +42,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmltableelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-table-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-64060425" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-64060425" + } + ] }, "align": { "__compat": { @@ -221,7 +239,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tabular-data.html#dom-table-caption" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#dom-table-caption" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-14594520" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-14594520" + } + ] } }, "cellPadding": { @@ -763,7 +799,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#dom-table-insertrow" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-93995626" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-39872903" + } + ] } }, "rows": { @@ -1033,7 +1083,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-63206416" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-75708506" + } + ] } }, "tFoot": { @@ -1078,7 +1138,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tabular-data.html#dom-table-tfoot" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#dom-table-tfoot" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-64197097" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-64197097" + } + ] } }, "tHead": { @@ -1123,7 +1201,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tabular-data.html#dom-table-thead" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#dom-table-thead" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-9530944" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-9530944" + } + ] } }, "width": { diff --git a/api/HTMLTableRowElement.json b/api/HTMLTableRowElement.json index b9227aa5015956..64e9add5cdb139 100644 --- a/api/HTMLTableRowElement.json +++ b/api/HTMLTableRowElement.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmltablerowelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-tr-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-6986576" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-6986576" + } + ] }, "align": { "__compat": { @@ -557,7 +575,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#dom-tr-insertcell" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-68927016" + } + ] }, "optional_index_parameter": { "__compat": { diff --git a/api/HTMLTableSectionElement.json b/api/HTMLTableSectionElement.json index 88cdc6005c1a14..8605d67cc767a0 100644 --- a/api/HTMLTableSectionElement.json +++ b/api/HTMLTableSectionElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tabular-data.html#htmltablesectionelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#htmltablesectionelement" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-67417573" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-67417573" + } + ] }, "align": { "__compat": { diff --git a/api/HTMLTemplateElement.json b/api/HTMLTemplateElement.json index e0444c1eee09a1..5a9190ae735703 100644 --- a/api/HTMLTemplateElement.json +++ b/api/HTMLTemplateElement.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#htmltemplateelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#htmltemplateelement" + } + ] }, "content": { "__compat": { @@ -98,7 +108,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-template-content" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#dom-template-content" + } + ] } } } diff --git a/api/HTMLTextAreaElement.json b/api/HTMLTextAreaElement.json index b5645e97d617bc..9829cb7374d09c 100644 --- a/api/HTMLTextAreaElement.json +++ b/api/HTMLTextAreaElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmltextareaelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-textarea-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-ID-24874179" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-24874179" + } + ] }, "autocapitalize": { "__compat": { @@ -188,7 +206,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#dom-lfe-labels" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-lfe-labels" + } + ] } } } diff --git a/api/HTMLTimeElement.json b/api/HTMLTimeElement.json index 361391a7e49073..5bccd550d258e1 100644 --- a/api/HTMLTimeElement.json +++ b/api/HTMLTimeElement.json @@ -57,7 +57,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmltimeelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/text-level-semantics.html#the-time-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-time-element" + } + ] }, "dateTime": { "__compat": { @@ -116,7 +130,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/text-level-semantics.html#dom-time-datetime" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/text-level-semantics.html#dom-time-datetime" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#dom-time-datetime" + } + ] } } } diff --git a/api/HTMLTitleElement.json b/api/HTMLTitleElement.json index a5edcae07dcb46..080935a3f33320 100644 --- a/api/HTMLTitleElement.json +++ b/api/HTMLTitleElement.json @@ -45,7 +45,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmltitleelement" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/document-metadata.html#the-title-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-title-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-79243169" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-79243169" + } + ] }, "text": { "__compat": { diff --git a/api/HTMLTrackElement.json b/api/HTMLTrackElement.json index 7c247e8d5e38b0..661360866e12c6 100644 --- a/api/HTMLTrackElement.json +++ b/api/HTMLTrackElement.json @@ -73,7 +73,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmltrackelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-track-element" + } + ] }, "default": { "__compat": { @@ -444,7 +454,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-track-src" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#dom-track-src" + } + ] } }, "srclang": { diff --git a/api/HTMLUListElement.json b/api/HTMLUListElement.json index 54ac3836736db3..e9e6385be38d35 100644 --- a/api/HTMLUListElement.json +++ b/api/HTMLUListElement.json @@ -45,7 +45,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlulistelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-ul-element" + }, + { + "name": "DOM2 HTML", + "url": "https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-86834457" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-86834457" + } + ] }, "compact": { "__compat": { diff --git a/api/HTMLUnknownElement.json b/api/HTMLUnknownElement.json index eec521f3ee524c..f6d31a33dd7618 100644 --- a/api/HTMLUnknownElement.json +++ b/api/HTMLUnknownElement.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/elements.html#htmlunknownelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#htmlunknownelement" + } + ] } } } diff --git a/api/HTMLVideoElement.json b/api/HTMLVideoElement.json index fcc5c1e8ad7139..2ab1a26fba0796 100644 --- a/api/HTMLVideoElement.json +++ b/api/HTMLVideoElement.json @@ -48,7 +48,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#idl-def-HTMLVideoElement" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlvideoelement" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-video-element" + } + ] }, "height": { "__compat": { @@ -722,7 +736,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-HTMLVideoElement-getVideoPlaybackQuality-VideoPlaybackQualitye" + } + ] } } } diff --git a/api/HashChangeEvent.json b/api/HashChangeEvent.json index b530e3028c4e6a..964e673e25e391 100644 --- a/api/HashChangeEvent.json +++ b/api/HashChangeEvent.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#hashchangeevent" + } + ] }, "oldURL": { "__compat": { @@ -95,7 +101,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hashchangeevent-oldurl" + } + ] } }, "newURL": { @@ -146,7 +158,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hashchangeevent-newurl" + } + ] } } } diff --git a/api/Headers.json b/api/Headers.json index 54e4030e290fa0..a97a18e95adbe5 100644 --- a/api/Headers.json +++ b/api/Headers.json @@ -114,7 +114,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#headers-class" + } + ] }, "lexicographical_sorting": { "__compat": { @@ -282,7 +288,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-headers" + } + ] } }, "append": { @@ -399,7 +411,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-headers-append" + } + ] } }, "delete": { @@ -516,7 +534,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-headers-delete" + } + ] } }, "entries": { @@ -567,7 +591,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#headers-class" + } + ] } }, "get": { @@ -688,7 +718,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-headers-get" + } + ] } }, "getAll": { @@ -873,7 +909,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-headers-get" + } + ] } }, "keys": { @@ -924,7 +966,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#headers-class" + } + ] } }, "set": { @@ -1041,7 +1089,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-headers-set" + } + ] } }, "values": { @@ -1092,7 +1146,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#headers-class" + } + ] } } } diff --git a/api/History.json b/api/History.json index 773a144d80ad4a..ec7d8f60e1fde4 100644 --- a/api/History.json +++ b/api/History.json @@ -45,7 +45,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#the-history-interface" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#the-history-interface" + }, + { + "name": "Custom Scroll Restoration", + "url": "https://majido.github.io/scroll-restoration-proposal/history-based-api.html#web-idl" + } + ] }, "back": { "__compat": { @@ -236,7 +250,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/history.html#dom-history-length" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-history-length" + } + ] } }, "pushState": { @@ -285,7 +309,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#history" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#history" + } + ] } }, "replaceState": { diff --git a/api/IDBCursor.json b/api/IDBCursor.json index e69ffaff1fd061..459e6d3c787d4f 100644 --- a/api/IDBCursor.json +++ b/api/IDBCursor.json @@ -98,7 +98,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBCursor" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#idl-def-IDBCursor" + } + ] }, "worker_support": { "__compat": { @@ -256,7 +266,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBCursor-direction" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbcursor-direction" + } + ] } }, "key": { @@ -322,7 +342,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBCursor-key" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbcursor-key" + } + ] }, "binary_keys": { "__compat": { @@ -439,7 +469,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBCursor-primaryKey" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbcursor-primarykey" + } + ] } }, "source": { @@ -505,7 +545,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBCursor-source" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbcursor-source" + } + ] } }, "advance": { @@ -571,7 +621,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBCursor-advance-void-unsigned-long-count" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbcursor-advance" + } + ] } }, "continue": { @@ -637,7 +697,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBCursor-continue-void-any-key" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbcursor-continue" + } + ] } }, "continuePrimaryKey": { @@ -695,7 +765,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbcursor-continueprimarykey" + } + ] } }, "delete": { @@ -761,7 +837,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBCursor-delete-IDBRequest" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbcursor-delete" + } + ] } }, "update": { @@ -827,7 +913,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBCursor-update-IDBRequest-any-value" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbcursor-update" + } + ] } } } diff --git a/api/IDBCursorWithValue.json b/api/IDBCursorWithValue.json index 06a5de4e8e69ec..b7002cf716dcb1 100644 --- a/api/IDBCursorWithValue.json +++ b/api/IDBCursorWithValue.json @@ -84,7 +84,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBCursorWithValue" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#idbcursorwithvalue" + } + ] }, "worker_support": { "__compat": { @@ -200,7 +210,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBCursor-source" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#database-interface" + } + ] } } } diff --git a/api/IDBDatabase.json b/api/IDBDatabase.json index 3a023bd58ea14a..83ffa8179bf672 100644 --- a/api/IDBDatabase.json +++ b/api/IDBDatabase.json @@ -84,7 +84,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBDatabase" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#database-interface" + } + ] }, "worker_support": { "__compat": { @@ -228,7 +238,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-name" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-name" + } + ] } }, "objectStoreNames": { @@ -294,7 +314,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-objectStoreNames" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-objectstorenames" + } + ] } }, "onabort": { @@ -360,7 +390,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-onabort" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-onabort" + } + ] } }, "onclose": { @@ -412,7 +452,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-onclose" + } + ] } }, "onerror": { @@ -478,7 +524,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-onerror" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-onerror" + } + ] } }, "onversionchange": { @@ -544,7 +600,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-onversionchange" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-onversionchange" + } + ] } }, "version": { @@ -610,7 +676,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-version" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-version" + } + ] } }, "close": { @@ -676,7 +752,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-close-void" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-close" + } + ] } }, "createObjectStore": { @@ -742,7 +828,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-createObjectStore-IDBObjectStore-DOMString-name-IDBObjectStoreParameters-optionalParameters" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-createobjectstore" + } + ] } }, "deleteObjectStore": { @@ -808,7 +904,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-deleteObjectStore-void-DOMString-name" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-deleteobjectstore" + } + ] } }, "transaction": { @@ -874,7 +980,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-transaction-IDBTransaction-DOMString-sequence-DOMString--storeNames-IDBTransactionMode-mode" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbdatabase-transaction" + } + ] } } } diff --git a/api/IDBEnvironment.json b/api/IDBEnvironment.json index f3e88cc3155356..e89a34595f2bb1 100644 --- a/api/IDBEnvironment.json +++ b/api/IDBEnvironment.json @@ -63,7 +63,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBEnvironment" + } + ] }, "worker_support": { "__compat": { diff --git a/api/IDBFactory.json b/api/IDBFactory.json index 8f12183ca33840..d9c2d3b8f9b36f 100644 --- a/api/IDBFactory.json +++ b/api/IDBFactory.json @@ -84,7 +84,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBFactory" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#factory-interface" + } + ] }, "worker_support": { "__compat": { @@ -207,7 +217,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBFactory-cmp-short-any-first-any-second" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbfactory-cmp" + } + ] } }, "deleteDatabase": { @@ -280,7 +300,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBFactory-deleteDatabase-IDBOpenDBRequest-DOMString-name" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbfactory-deletedatabase" + } + ] } }, "open": { @@ -353,7 +383,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBFactory-open-IDBOpenDBRequest-DOMString-name-unsigned-long-long-version" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbfactory-open" + } + ] } } } diff --git a/api/IDBIndex.json b/api/IDBIndex.json index 0c3a69b24fb026..259cb9ad8a3359 100644 --- a/api/IDBIndex.json +++ b/api/IDBIndex.json @@ -84,7 +84,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBIndex" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#index-interface" + } + ] }, "worker_support": { "__compat": { @@ -258,7 +268,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-keyPath" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-keypath" + } + ] } }, "locale": { @@ -382,7 +402,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-multiEntry" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-multientry" + } + ] } }, "name": { @@ -455,7 +485,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-name" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-name" + } + ] }, "renaming_with_name_setter": { "__compat": { @@ -579,7 +619,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-objectStore" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-objectstore" + } + ] } }, "unique": { @@ -652,7 +702,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-unique" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-unique" + } + ] } }, "count": { @@ -725,7 +785,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-count-IDBRequest-any-key" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-count" + } + ] } }, "get": { @@ -798,7 +868,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-get-IDBRequest-any-key" + } + ] } }, "getAll": { @@ -861,7 +937,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-getall" + } + ] } }, "getAllKeys": { @@ -924,7 +1006,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-getallkeys" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-getallkeys" + } + ] } }, "getKey": { @@ -997,7 +1089,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-getKey-IDBRequest-any-key" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-getkey" + } + ] } }, "openCursor": { @@ -1070,7 +1172,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-openCursor-IDBRequest-any-range-IDBCursorDirection-direction" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-opencursor" + } + ] } }, "openKeyCursor": { @@ -1143,7 +1255,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-openKeyCursor-IDBRequest-any-range-IDBCursorDirection-direction" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbindex-openkeycursor" + } + ] } } } diff --git a/api/IDBKeyRange.json b/api/IDBKeyRange.json index 9baf15eae27bbc..55525e6f141103 100644 --- a/api/IDBKeyRange.json +++ b/api/IDBKeyRange.json @@ -63,7 +63,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBKeyRange" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#keyrange" + } + ] }, "worker_support": { "__compat": { @@ -179,7 +189,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBKeyRange-lower" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbkeyrange-lower" + } + ] } }, "lowerOpen": { @@ -245,7 +265,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBKeyRange-lowerOpen" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbkeyrange-loweropen" + } + ] } }, "upper": { @@ -311,7 +341,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBKeyRange-upper" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbkeyrange-upper" + } + ] } }, "upperOpen": { @@ -377,7 +417,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBKeyRange-upperOpen" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbkeyrange-upperopen" + } + ] } }, "bound": { @@ -443,7 +493,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBKeyRange-bound-IDBKeyRange-any-lower-any-upper-boolean-lowerOpen-boolean-upperOpen" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbkeyrange-bound" + } + ] } }, "includes": { @@ -494,7 +554,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbkeyrange-includes" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbkeyrange-includes" + } + ] } }, "lowerBound": { @@ -560,7 +630,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBKeyRange-lowerBound-IDBKeyRange-any-lower-boolean-open" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbkeyrange-lowerbound-lower-open-lower" + } + ] } }, "only": { @@ -626,7 +706,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBKeyRange-only-IDBKeyRange-any-value" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbkeyrange-only" + } + ] } }, "upperBound": { @@ -692,7 +782,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBKeyRange-upperBound-IDBKeyRange-any-upper-boolean-open" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbkeyrange-upperbound-upper-open-upper" + } + ] } } } diff --git a/api/IDBObjectStore.json b/api/IDBObjectStore.json index 73266720d61067..a9a83a9889a016 100644 --- a/api/IDBObjectStore.json +++ b/api/IDBObjectStore.json @@ -84,7 +84,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBObjectStore" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#object-store-interface" + } + ] }, "worker_support": { "__compat": { @@ -221,7 +231,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-autoIncrement" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-autoincrement" + } + ] } }, "indexNames": { @@ -308,7 +328,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-indexNames" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-indexnames" + } + ] } }, "keyPath": { @@ -395,7 +425,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-keyPath" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-keypath" + } + ] } }, "name": { @@ -482,7 +522,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-name" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-name" + } + ] }, "renaming_through_name_setter": { "__compat": { @@ -620,7 +670,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-transaction" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-transaction" + } + ] } }, "add": { @@ -707,7 +767,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-add-IDBRequest-any-value-any-key" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-add" + } + ] } }, "clear": { @@ -794,7 +864,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-clear-IDBRequest" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-clear" + } + ] } }, "count": { @@ -881,7 +961,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-count-IDBRequest-any-key" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-count" + } + ] } }, "createIndex": { @@ -968,7 +1058,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-createIndex-IDBIndex-DOMString-name-DOMString-sequence-DOMString--keyPath-IDBIndexParameters-optionalParameters" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-createindex" + } + ] } }, "delete": { @@ -1055,7 +1155,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-delete-IDBRequest-any-key" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-delete" + } + ] } }, "deleteIndex": { @@ -1142,7 +1252,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-deleteIndex-void-DOMString-indexName" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-deleteindex" + } + ] } }, "get": { @@ -1229,7 +1349,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-get-IDBRequest-any-key" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-get" + } + ] } }, "getAll": { @@ -1286,7 +1416,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-getall" + } + ] } }, "getAllKeys": { @@ -1337,7 +1473,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-getallkeys" + } + ] } }, "getKey": { @@ -1388,7 +1530,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-getkey" + } + ] } }, "index": { @@ -1475,7 +1623,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-index-IDBIndex-DOMString-name" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-index" + } + ] } }, "openCursor": { @@ -1562,7 +1720,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBIndex-openCursor-IDBRequest-any-range-IDBCursorDirection-direction" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-opencursor" + } + ] } }, "openKeyCursor": { @@ -1648,7 +1816,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-openkeycursor" + } + ] } }, "put": { @@ -1735,7 +1909,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-put-IDBRequest-any-value-any-key" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbobjectstore-put" + } + ] } } } diff --git a/api/IDBOpenDBRequest.json b/api/IDBOpenDBRequest.json index bbf10b68fc5ab0..d46b43087b2b45 100644 --- a/api/IDBOpenDBRequest.json +++ b/api/IDBOpenDBRequest.json @@ -84,7 +84,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBOpenDBRequest" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#idbopendbrequest" + } + ] }, "worker_support": { "__compat": { @@ -221,7 +231,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBOpenDBRequest-onblocked" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbopendbrequest-onblocked" + } + ] } }, "onupgradeneeded": { @@ -308,7 +328,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBOpenDBRequest-onupgradeneeded" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbopendbrequest-onupgradeneeded" + } + ] } } } diff --git a/api/IDBRequest.json b/api/IDBRequest.json index 66066efa619b51..264c687d1e4f06 100644 --- a/api/IDBRequest.json +++ b/api/IDBRequest.json @@ -84,7 +84,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBRequest" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#request-api" + } + ] }, "worker_support": { "__compat": { @@ -221,7 +231,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBRequest-error" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbrequest-error" + } + ] }, "DOMException": { "__compat": { @@ -337,7 +357,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBRequest-onerror" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbrequest-onerror" + } + ] } }, "onsuccess": { @@ -402,7 +432,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBRequest-onsuccess" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbrequest-onsuccess" + } + ] } }, "readyState": { @@ -467,7 +507,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBRequest-readyState" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbrequest-readystate" + } + ] } }, "result": { @@ -532,7 +582,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBRequest-result" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbrequest-result" + } + ] } }, "source": { @@ -597,7 +657,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBRequest-source" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbrequest-source" + } + ] } }, "transaction": { @@ -662,7 +732,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBRequest-transaction" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbrequest-transaction" + } + ] } } } diff --git a/api/IDBTransaction.json b/api/IDBTransaction.json index 152b34a11d497e..de0b4e0beaf48f 100644 --- a/api/IDBTransaction.json +++ b/api/IDBTransaction.json @@ -84,7 +84,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#transaction" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#transaction" + } + ] }, "worker_support": { "__compat": { @@ -221,7 +231,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBTransaction-db" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbtransaction-db" + } + ] } }, "error": { @@ -308,7 +328,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBTransaction-error" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbtransaction-error" + } + ] }, "DOMException": { "__compat": { @@ -424,7 +454,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBTransaction-mode" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbtransaction-mode" + } + ] } }, "objectStoreNames": { @@ -475,7 +515,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBDatabase-objectStoreNames" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbtransaction-objectstorenames" + } + ] } }, "onabort": { @@ -540,7 +590,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBTransaction-onabort" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbtransaction-onabort" + } + ] } }, "oncomplete": { @@ -605,7 +665,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBTransaction-oncomplete" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbtransaction-oncomplete" + } + ] } }, "onerror": { @@ -670,7 +740,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBTransaction-ononerror" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbtransaction-onerror" + } + ] } }, "abort": { @@ -735,7 +815,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBTransaction-abort-void" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbtransaction-abort" + } + ] } }, "objectStore": { @@ -800,7 +890,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBTransaction-objectStore-IDBObjectStore-DOMString-name" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbtransaction-objectstore" + } + ] } } } diff --git a/api/IDBVersionChangeEvent.json b/api/IDBVersionChangeEvent.json index acd22f811a2884..6d1731550b3921 100644 --- a/api/IDBVersionChangeEvent.json +++ b/api/IDBVersionChangeEvent.json @@ -62,7 +62,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#idl-def-IDBVersionChangeEvent" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#idbversionchangeevent" + } + ] }, "worker_support": { "__compat": { @@ -199,7 +209,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBVersionChangeEvent-newVersion" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbversionchangeevent-newversion" + } + ] } }, "oldVersion": { @@ -286,7 +306,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBVersionChangeEvent-oldVersion" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-idbversionchangeevent-oldversion" + } + ] } }, "version": { diff --git a/api/IIRFilterNode.json b/api/IIRFilterNode.json index e2484c0ba98492..8f396cb83d6509 100644 --- a/api/IIRFilterNode.json +++ b/api/IIRFilterNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-iirfilternode-interface" + } + ] }, "IIRFilterNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-iirfilternode-interface" + } + ] } }, "getFrequencyResponse": { diff --git a/api/ImageBitmap.json b/api/ImageBitmap.json index 475b34ff864630..4813984e6d657c 100644 --- a/api/ImageBitmap.json +++ b/api/ImageBitmap.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#imagebitmap" + } + ] }, "height": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-imagebitmap-height" + } + ] } }, "width": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-imagebitmap-width" + } + ] } }, "close": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-imagebitmap-close" + } + ] } } } diff --git a/api/ImageCapture.json b/api/ImageCapture.json index e5239992122ba2..bfa5359a683dbe 100644 --- a/api/ImageCapture.json +++ b/api/ImageCapture.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#imagecaptureapi" + } + ] }, "ImageCapture": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-imagecapture-imagecapture" + } + ] } }, "getPhotoCapabilities": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-imagecapture-getphotocapabilities" + } + ] } }, "getPhotoSettings": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-imagecapture-getphotosettings" + } + ] } }, "grabFrame": { @@ -252,7 +276,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-imagecapture-grabframe" + } + ] } }, "takePhoto": { @@ -335,7 +365,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-imagecapture-takephoto" + } + ] } }, "track": { @@ -386,7 +422,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-imagecapture-track" + } + ] } } } diff --git a/api/ImageData.json b/api/ImageData.json index aeb580b1314650..fee92737eda3d3 100644 --- a/api/ImageData.json +++ b/api/ImageData.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/canvas.html#imagedata" + } + ] }, "worker_support": { "__compat": { @@ -150,7 +156,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-imagedata" + } + ] } }, "data": { @@ -201,7 +213,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-imagedata-data" + } + ] } }, "height": { @@ -252,7 +270,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-imagedata-height" + } + ] } }, "width": { @@ -303,7 +327,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-imagedata-width" + } + ] } } } diff --git a/api/InputDeviceCapabilities.json b/api/InputDeviceCapabilities.json index 4ef646212c3ab2..f81a95e4e441fc 100644 --- a/api/InputDeviceCapabilities.json +++ b/api/InputDeviceCapabilities.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "InputDeviceCapabilities", + "url": "https://wicg.github.io/InputDeviceCapabilities/#dom-uievent-sourcecapabilities" + } + ] }, "InputDeviceCapabilities": { "__compat": { @@ -150,7 +156,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "InputDeviceCapabilities", + "url": "https://wicg.github.io/InputDeviceCapabilities/#dom-inputdevicecapabilities-firestouchevents" + } + ] } } } diff --git a/api/InputEvent.json b/api/InputEvent.json index 5ecf52d580756f..b9a330ef8d8d04 100644 --- a/api/InputEvent.json +++ b/api/InputEvent.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "InputEvents2", + "url": "https://w3c.github.io/input-events/index.html#interface-InputEvent" + } + ] }, "InputEvent": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "InputEvents2", + "url": "https://w3c.github.io/input-events/index.html#interface-InputEvent" + } + ] } }, "data": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "InputEvents2", + "url": "https://w3c.github.io/input-events/index.html#dfn-data" + } + ] } }, "dataTransfer": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "InputEvents2", + "url": "https://w3c.github.io/input-events/index.html#dom-inputevent-datatransfer" + } + ] } }, "getTargetRanges": { @@ -252,7 +276,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "InputEvents2", + "url": "https://w3c.github.io/input-events/index.html#dom-inputevent-gettargetranges()" + } + ] } }, "inputType": { @@ -303,7 +333,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "InputEvents2", + "url": "https://w3c.github.io/input-events/index.html#dom-inputevent-inputtype" + } + ] } }, "isComposing": { @@ -354,7 +390,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-InputEvent-isComposing" + } + ] } } } diff --git a/api/InstallEvent.json b/api/InstallEvent.json index f0d9a7c60703f0..76e58610bf7eac 100644 --- a/api/InstallEvent.json +++ b/api/InstallEvent.json @@ -101,7 +101,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#install-event-section" + } + ] } }, "activeWorker": { @@ -153,7 +159,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#install-event-section" + } + ] } } } diff --git a/api/IntersectionObserver.json b/api/IntersectionObserver.json index 2c72d76bc2f008..bbd9a392c959cc 100644 --- a/api/IntersectionObserver.json +++ b/api/IntersectionObserver.json @@ -95,7 +95,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-intersectionobserver" + } + ] } }, "root": { @@ -144,7 +150,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-root" + } + ] } }, "rootMargin": { @@ -193,7 +205,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-rootMargin" + } + ] } }, "thresholds": { @@ -242,7 +260,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-thresholds" + } + ] } }, "disconnect": { @@ -292,7 +316,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-disconnect" + } + ] } }, "observe": { @@ -341,7 +371,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-observe" + } + ] } }, "takeRecords": { @@ -391,7 +427,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-takeRecords" + } + ] } }, "unobserve": { @@ -441,7 +483,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-unobserve" + } + ] } } } diff --git a/api/IntersectionObserverEntry.json b/api/IntersectionObserverEntry.json index 8e73363b49341d..73662d49f701de 100644 --- a/api/IntersectionObserverEntry.json +++ b/api/IntersectionObserverEntry.json @@ -46,7 +46,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#intersection-observer-entry" + } + ] }, "boundingClientRect": { "__compat": { @@ -94,7 +100,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverentry-boundingClientRect" + } + ] } }, "intersectionRatio": { @@ -143,7 +155,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverentry-intersectionratio" + } + ] } }, "intersectionRect": { @@ -192,7 +210,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverentry-intersectionrect" + } + ] } }, "isIntersecting": { @@ -241,7 +265,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverentry-isintersecting" + } + ] } }, "rootBounds": { @@ -290,7 +320,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverentry-rootbounds" + } + ] } }, "target": { @@ -339,7 +375,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverentry-target" + } + ] } }, "time": { @@ -388,7 +430,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IntersectionObserver", + "url": "https://w3c.github.io/IntersectionObserver/#dom-intersectionobserverentry-time" + } + ] } } } diff --git a/api/KeyboardEvent.json b/api/KeyboardEvent.json index 256724b9692475..783f45070e57a8 100644 --- a/api/KeyboardEvent.json +++ b/api/KeyboardEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "UI Events", + "url": "https://w3c.github.io/uievents/#interface-keyboardevent" + } + ] }, "KeyboardEvent": { "__compat": { @@ -98,7 +104,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "UI Events", + "url": "https://w3c.github.io/uievents/#interface-keyboardevent" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#interface-KeyboardEvent" + } + ] }, "code_and_key_in_init": { "__compat": { @@ -200,7 +216,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-KeyboardEvent-altKey" + } + ] } }, "charCode": { @@ -302,7 +324,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "UI Events", + "url": "https://w3c.github.io/uievents/#dom-keyboardevent-code" + } + ] } }, "ctrlKey": { @@ -353,7 +381,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-KeyboardEvent-ctrlKey" + } + ] } }, "isComposing": { @@ -404,7 +438,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-KeyboardEvent-isComposing" + } + ] } }, "key": { @@ -456,7 +496,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-KeyboardEvent-key" + } + ] }, "non_printable_keys": { "__compat": { @@ -769,7 +815,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-KeyboardEvent-location" + } + ] } }, "metaKey": { @@ -820,7 +872,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-KeyboardEvent-metaKey" + } + ] } }, "repeat": { @@ -871,7 +929,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-KeyboardEvent-repeat" + } + ] } }, "shiftKey": { @@ -922,7 +986,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-KeyboardEvent-shiftKey" + } + ] } }, "which": { @@ -1026,7 +1096,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-KeyboardEvent-getModifierState" + } + ] }, "accel_support": { "__compat": { diff --git a/api/KeyframeEffect.json b/api/KeyframeEffect.json index e69681942ae6a9..6d26dcfff69e4e 100644 --- a/api/KeyframeEffect.json +++ b/api/KeyframeEffect.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#the-keyframeeffect-interfaces" + } + ] }, "KeyframeEffect": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-keyframeeffect-keyframeeffect" + } + ] } }, "composite": { @@ -164,7 +176,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-keyframeeffect-composite" + } + ] } }, "getKeyframes": { @@ -215,7 +233,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-keyframeeffect-getkeyframes" + } + ] } }, "iterationComposite": { @@ -280,7 +304,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-keyframeeffect-iterationcomposite" + } + ] } }, "setKeyframes": { @@ -331,7 +361,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-keyframeeffect-setkeyframes" + } + ] } }, "target": { @@ -382,7 +418,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Animations", + "url": "https://drafts.csswg.org/web-animations/#dom-keyframeeffect-target" + } + ] } } } diff --git a/api/LinearAccelerationSensor.json b/api/LinearAccelerationSensor.json index 90a9598e8b1c5c..523fb0ccb451f1 100644 --- a/api/LinearAccelerationSensor.json +++ b/api/LinearAccelerationSensor.json @@ -39,7 +39,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#linearaccelerationsensor-interface" + } + ] }, "LinearAccelerationSensor": { "__compat": { @@ -81,7 +87,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#dom-linearaccelerationsensor-linearaccelerationsensor" + } + ] } }, "x": { @@ -132,7 +144,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#linearaccelerationsensor-x" + } + ] } }, "y": { @@ -183,7 +201,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#accelerometer-y" + } + ] } }, "z": { @@ -234,7 +258,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Accelerometer", + "url": "https://www.w3.org/TR/accelerometer/#accelerometer-z" + } + ] } } } diff --git a/api/LinkStyle.json b/api/LinkStyle.json index bb5dc57138c3b2..a4926e5a8636eb 100644 --- a/api/LinkStyle.json +++ b/api/LinkStyle.json @@ -45,7 +45,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#the-linkstyle-interface" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-LinkStyle" + } + ] }, "sheet": { "__compat": { diff --git a/api/Location.json b/api/Location.json index e3689bcf04ae52..d763688ce76d57 100644 --- a/api/Location.json +++ b/api/Location.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#the-location-interface" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#the-location-interface" + } + ] }, "assign": { "__compat": { @@ -95,7 +105,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/history.html#dom-location-assign" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-location-assign" + } + ] } }, "hash": { @@ -146,7 +166,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-hash" + } + ] } }, "host": { @@ -197,7 +223,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-host" + } + ] } }, "hostname": { @@ -248,7 +280,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-hostname" + } + ] } }, "href": { @@ -299,7 +337,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-href" + } + ] } }, "origin": { @@ -353,7 +397,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-origin" + } + ] } }, "password": { @@ -398,7 +448,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-password" + } + ] } }, "pathname": { @@ -451,7 +507,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-pathname" + } + ] } }, "port": { @@ -502,7 +564,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-port" + } + ] } }, "protocol": { @@ -553,7 +621,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-protocol" + } + ] } }, "reload": { @@ -604,7 +678,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/history.html#dom-location-reload" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-location-reload" + } + ] } }, "replace": { @@ -655,7 +739,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/history.html#dom-location-replace" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-location-replace" + } + ] } }, "search": { @@ -708,7 +802,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-search" + } + ] } }, "toString": { @@ -760,7 +860,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#htmlhyperlinkelementutils" + } + ] } }, "username": { @@ -805,7 +911,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-username" + } + ] } } } diff --git a/api/Lock.json b/api/Lock.json index 29a13ad85423c1..b2a2443c09c741 100644 --- a/api/Lock.json +++ b/api/Lock.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Locks", + "url": "https://wicg.github.io/web-locks/#api-lock" + } + ] }, "mode": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Locks", + "url": "https://wicg.github.io/web-locks/#dom-lock-mode" + } + ] } }, "name": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Locks", + "url": "https://wicg.github.io/web-locks/#dom-lock-name" + } + ] } } } diff --git a/api/LockManager.json b/api/LockManager.json index 2627418246306d..4ef4d7e3343056 100644 --- a/api/LockManager.json +++ b/api/LockManager.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Locks", + "url": "https://wicg.github.io/web-locks/#api-lock-manager" + } + ] }, "query": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Locks", + "url": "https://wicg.github.io/web-locks/#dom-lockmanager-query" + } + ] } }, "request": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Locks", + "url": "https://wicg.github.io/web-locks/#dom-lockmanager-request" + } + ] } } } diff --git a/api/LongRange.json b/api/LongRange.json index 44b0f896567962..3d5d8ec6290145 100644 --- a/api/LongRange.json +++ b/api/LongRange.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#idl-def-LongRange" + } + ] } } } diff --git a/api/MIDIAccess.json b/api/MIDIAccess.json index e8d30462171a4f..e87a7a870f71bc 100644 --- a/api/MIDIAccess.json +++ b/api/MIDIAccess.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebMIDI API", + "url": "https://webaudio.github.io/web-midi-api/#midiaccess-interface" + } + ] } } } diff --git a/api/MIDIConnectionEvent.json b/api/MIDIConnectionEvent.json index 924d1c2d368d41..253eff022f615f 100644 --- a/api/MIDIConnectionEvent.json +++ b/api/MIDIConnectionEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebMIDI API", + "url": "https://webaudio.github.io/web-midi-api/#midiconnectionevent-interface" + } + ] } } } diff --git a/api/MIDIInput.json b/api/MIDIInput.json index f4212c961fad09..c97118b68e28ae 100644 --- a/api/MIDIInput.json +++ b/api/MIDIInput.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebMIDI API", + "url": "https://webaudio.github.io/web-midi-api/#midiinput-interface" + } + ] } } } diff --git a/api/MIDIInputMap.json b/api/MIDIInputMap.json index ce5fb28572bf08..1ff7c320546347 100644 --- a/api/MIDIInputMap.json +++ b/api/MIDIInputMap.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebMIDI API", + "url": "https://webaudio.github.io/web-midi-api/#midiinputmap-interface" + } + ] } } } diff --git a/api/MIDIOutputMap.json b/api/MIDIOutputMap.json index ca87f09c14f66e..dd463f354c1819 100644 --- a/api/MIDIOutputMap.json +++ b/api/MIDIOutputMap.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebMIDI API", + "url": "https://webaudio.github.io/web-midi-api/#midiinputmap-interface" + } + ] } } } diff --git a/api/Magnetometer.json b/api/Magnetometer.json index a605393dc0dc05..c41ae6eed43df5 100644 --- a/api/Magnetometer.json +++ b/api/Magnetometer.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Magnetometer", + "url": "https://www.w3.org/TR/magnetometer/#magnetometer-interface" + } + ] }, "Magnetometer": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Magnetometer", + "url": "https://www.w3.org/TR/magnetometer/#dom-magnetometer-magnetometer" + } + ] } }, "x": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Magnetometer", + "url": "https://www.w3.org/TR/magnetometer/#magnetometer-y" + } + ] } }, "y": { @@ -201,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Magnetometer", + "url": "https://www.w3.org/TR/magnetometer/#magnetometer-y" + } + ] } }, "z": { @@ -252,7 +276,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Magnetometer", + "url": "https://www.w3.org/TR/magnetometer/#magnetometer-z" + } + ] } } } diff --git a/api/MediaCapabilities.json b/api/MediaCapabilities.json index d041bf71fa6287..12d9886279ef98 100644 --- a/api/MediaCapabilities.json +++ b/api/MediaCapabilities.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capabilities", + "url": "https://wicg.github.io/media-capabilities#mediacapabilities" + } + ] }, "encodingInfo": { "__compat": { @@ -113,7 +119,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capabilities", + "url": "https://wicg.github.io/media-capabilities#dom-mediacapabilities-encodinginfo-configuration-configuration" + } + ] } }, "decodingInfo": { @@ -161,7 +173,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capabilities", + "url": "https://wicg.github.io/media-capabilities#dom-mediacapabilities-decodinginfo-configuration-configuration" + } + ] } } } diff --git a/api/MediaDeviceInfo.json b/api/MediaDeviceInfo.json index 293ef48a4c7ac0..62a76577fa140f 100644 --- a/api/MediaDeviceInfo.json +++ b/api/MediaDeviceInfo.json @@ -63,7 +63,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#idl-def-MediaDeviceInfo" + } + ] }, "deviceId": { "__compat": { @@ -128,7 +134,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediadeviceinfo-deviceid" + } + ] } }, "groupId": { @@ -194,7 +206,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediadeviceinfo-groupid" + } + ] } }, "kind": { @@ -260,7 +278,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediadeviceinfo-kind" + } + ] } }, "label": { @@ -326,7 +350,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediadeviceinfo-label" + } + ] } }, "toJSON": { diff --git a/api/MediaDevices.json b/api/MediaDevices.json index 915bb1a2922f42..ff49a7612f1818 100644 --- a/api/MediaDevices.json +++ b/api/MediaDevices.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#mediadevices" + } + ] }, "ondevicechange": { "__compat": { @@ -114,7 +120,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediadevices-ondevicechange" + } + ] } }, "enumerateDevices": { @@ -171,7 +183,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#mediadevices" + } + ] } }, "getSupportedConstraints": { @@ -222,7 +240,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaDevices-getSupportedConstraints-MediaTrackSupportedConstraints" + } + ] } }, "getUserMedia": { @@ -344,7 +368,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediadevices-getusermedia" + } + ] }, "secure_context_required": { "__compat": { diff --git a/api/MediaElementAudioSourceNode.json b/api/MediaElementAudioSourceNode.json index c4ccdd0fd994cd..bb66be6e303307 100644 --- a/api/MediaElementAudioSourceNode.json +++ b/api/MediaElementAudioSourceNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode" + } + ] }, "MediaElementAudioSourceNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#idl-def-MediaElementAudioSourceNode" + } + ] } }, "mediaElement": { diff --git a/api/MediaError.json b/api/MediaError.json index 0b4a9214c542c8..6ee2d8f7b96b3e 100644 --- a/api/MediaError.json +++ b/api/MediaError.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#mediaerror" + } + ] }, "code": { "__compat": { @@ -92,7 +98,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tembedded-content.html#dom-mediaerror-code" + } + ] } }, "message": { @@ -128,7 +140,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-mediaerror-message" + } + ] } } } diff --git a/api/MediaKeyMessageEvent.json b/api/MediaKeyMessageEvent.json index 0d33e236e562a3..3af4e156ee669c 100644 --- a/api/MediaKeyMessageEvent.json +++ b/api/MediaKeyMessageEvent.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#mediakeymessageevent" + } + ] }, "MediaKeyMessageEvent": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#mediakeymessageevent" + } + ] } }, "message": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeyMessageEvent-message" + } + ] } }, "messageType": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeyMessageEvent-messageType" + } + ] } } } diff --git a/api/MediaKeySession.json b/api/MediaKeySession.json index 53e76d4cca2bf9..76ed22b3a94d7d 100644 --- a/api/MediaKeySession.json +++ b/api/MediaKeySession.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#mediakeysession-interface" + } + ] }, "closed": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#dom-mediakeysession-closed" + } + ] } }, "expiration": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySession-expiration" + } + ] } }, "keyStatuses": { @@ -200,7 +218,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySession-keyStatuses" + } + ] } }, "sessionId": { @@ -251,7 +275,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySession-sessionId" + } + ] } }, "onkeystatuseschange": { @@ -404,7 +434,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySession-close-Promise-void" + } + ] } }, "generateRequest": { @@ -455,7 +491,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySession-generateRequest-Promise-void--DOMString-initDataType-BufferSource-initData" + } + ] } }, "load": { @@ -506,7 +548,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySession-load-Promise-boolean--DOMString-sessionId" + } + ] } }, "remove": { @@ -557,7 +605,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySession-sessionId" + } + ] } }, "update": { @@ -608,7 +662,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySession-update-Promise-void--BufferSource-response" + } + ] } } } diff --git a/api/MediaKeyStatusMap.json b/api/MediaKeyStatusMap.json index 728715dae48ddf..36a102b2648b04 100644 --- a/api/MediaKeyStatusMap.json +++ b/api/MediaKeyStatusMap.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#mediakeystatusmap-interface" + } + ] }, "size": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#dom-mediakeystatusmap-size" + } + ] } }, "entries": { diff --git a/api/MediaKeySystemAccess.json b/api/MediaKeySystemAccess.json index d9e0ee5850edc4..82307e432dad14 100644 --- a/api/MediaKeySystemAccess.json +++ b/api/MediaKeySystemAccess.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#mediakeysystemaccess-interface" + } + ] }, "keySystem": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySystemAccess-keySystem" + } + ] } }, "createMediaKeys": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySystemAccess-createMediaKeys-Promise-MediaKeys" + } + ] } }, "getConfiguration": { @@ -200,7 +218,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySystemAccess-getConfiguration-MediaKeySystemConfiguration" + } + ] } } } diff --git a/api/MediaKeySystemConfiguration.json b/api/MediaKeySystemConfiguration.json index bd9feb53be6822..302e279ef4ecf6 100644 --- a/api/MediaKeySystemConfiguration.json +++ b/api/MediaKeySystemConfiguration.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#dictionary-mediakeysystemconfiguration-members" + } + ] }, "initDataTypes": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySystemConfiguration-initDataTypes" + } + ] } }, "audioCapabilities": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySystemConfiguration-audioCapabilities" + } + ] } }, "videoCapabilities": { @@ -200,7 +218,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySystemConfiguration-videoCapabilities" + } + ] } }, "distinctiveIdentifier": { @@ -251,7 +275,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySystemConfiguration-distinctiveIdentifier" + } + ] } }, "persistentState": { @@ -302,7 +332,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeySystemConfiguration-persistentState" + } + ] } } } diff --git a/api/MediaKeys.json b/api/MediaKeys.json index 7eb8719edfd70a..139a44841dcb71 100644 --- a/api/MediaKeys.json +++ b/api/MediaKeys.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#mediakeys-interface" + } + ] }, "createSession": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeys-createSession-MediaKeySession-MediaKeySessionType-sessionType" + } + ] } }, "setServerCertificate": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#widl-MediaKeys-setServerCertificate-Promise-void--BufferSource-serverCertificate" + } + ] } } } diff --git a/api/MediaMetadata.json b/api/MediaMetadata.json index 527793955d2517..df26b422e86997 100644 --- a/api/MediaMetadata.json +++ b/api/MediaMetadata.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Session", + "url": "https://wicg.github.io/mediasession/#the-mediametadata-interface" + } + ] }, "MediaMetadata": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Session", + "url": "https://wicg.github.io/mediasession/#the-mediametadata-interface" + } + ] } }, "album": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Session", + "url": "https://wicg.github.io/mediasession/#dom-mediametadata-album" + } + ] } }, "artist": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Session", + "url": "https://wicg.github.io/mediasession/#dom-mediametadata-artist" + } + ] } }, "artwork": { @@ -252,7 +276,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Session", + "url": "https://wicg.github.io/mediasession/#dom-mediametadata-artwork" + } + ] } }, "title": { @@ -303,7 +333,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Session", + "url": "https://wicg.github.io/mediasession/#dom-mediametadata-title" + } + ] } } } diff --git a/api/MediaQueryList.json b/api/MediaQueryList.json index 859a1aa516ddf2..86ab3d192a3c29 100644 --- a/api/MediaQueryList.json +++ b/api/MediaQueryList.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#the-mediaquerylist-interface" + } + ] }, "addListener": { "__compat": { @@ -92,7 +98,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mediaquerylist-addlistener" + } + ] } }, "matches": { @@ -140,7 +152,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mediaquerylist-matches" + } + ] } }, "media": { @@ -188,7 +206,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mediaquerylist-media" + } + ] } }, "onchange": { @@ -236,7 +260,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mediaquerylist-onchange" + } + ] } }, "removeListener": { @@ -284,7 +314,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mediaquerylist-removelistener" + } + ] } }, "EventListener_objects": { diff --git a/api/MediaQueryListEvent.json b/api/MediaQueryListEvent.json index e46b3504af69e3..de5ca4b9d825bb 100644 --- a/api/MediaQueryListEvent.json +++ b/api/MediaQueryListEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#mediaquerylistevent" + } + ] }, "MediaQueryListEvent": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mediaquerylistevent-mediaquerylistevent" + } + ] } }, "matches": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mediaquerylistevent-matches" + } + ] } }, "media": { @@ -201,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mediaquerylistevent-media" + } + ] } } } diff --git a/api/MediaQueryListListener.json b/api/MediaQueryListListener.json index b4ee2e46ff1293..aec8bc36bed772 100644 --- a/api/MediaQueryListListener.json +++ b/api/MediaQueryListListener.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#the-mediaquerylist-interface" + } + ] } } } diff --git a/api/MediaRecorder.json b/api/MediaRecorder.json index 98cb7b51c81d92..26de9fca853ab8 100644 --- a/api/MediaRecorder.json +++ b/api/MediaRecorder.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#MediaRecorderAPI" + } + ] }, "MediaRecorder": { "__compat": { @@ -211,7 +217,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-mimeType" + } + ] } }, "state": { @@ -270,7 +282,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-state" + } + ] } }, "stream": { @@ -329,7 +347,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-stream" + } + ] } }, "ignoreMutedMedia": { @@ -380,7 +404,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#dom-mediarecorder-ignoremutedmedia" + } + ] } }, "videoBitsPerSecond": { @@ -431,7 +461,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#dom-mediarecorder-videobitspersecond" + } + ] } }, "audioBitsPerSecond": { @@ -482,7 +518,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#dom-mediarecorder-audiobitspersecond" + } + ] } }, "isTypeSupported": { @@ -533,7 +575,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#dom-mediarecorder-istypesupported" + } + ] } }, "pause": { @@ -584,7 +632,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-pause-void" + } + ] } }, "requestData": { @@ -642,7 +696,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-requestData-void" + } + ] } }, "resume": { @@ -700,7 +760,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-resume-void" + } + ] } }, "start": { @@ -751,7 +817,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-start-void-long-timeslice" + } + ] } }, "stop": { @@ -809,7 +881,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-stop-void" + } + ] } }, "ondataavailable": { @@ -867,7 +945,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-ondataavailable" + } + ] } }, "onerror": { @@ -925,7 +1009,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-onerror" + } + ] } }, "onpause": { @@ -983,7 +1073,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-onpause" + } + ] } }, "onresume": { @@ -1041,7 +1137,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-onresume" + } + ] } }, "onstart": { @@ -1099,7 +1201,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-onstart" + } + ] } }, "onstop": { @@ -1157,7 +1265,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#widl-MediaRecorder-onstop" + } + ] } }, "onwarning": { diff --git a/api/MediaRecorderErrorEvent.json b/api/MediaRecorderErrorEvent.json index d4db0507fb98e7..1e789e7ecf6dfc 100644 --- a/api/MediaRecorderErrorEvent.json +++ b/api/MediaRecorderErrorEvent.json @@ -52,7 +52,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/MediaRecorder.html#errorevent-section" + } + ] }, "MediaRecorderErrorEvent": { "__compat": { @@ -107,7 +113,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#dom-mediarecordererrorevent-mediarecordererrorevent" + } + ] } }, "error": { @@ -162,7 +174,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Recording", + "url": "https://w3c.github.io/mediacapture-record/#errorevent-section" + } + ] } } } diff --git a/api/MediaSession.json b/api/MediaSession.json index 24d28b125daa10..d72691d1fd2f37 100644 --- a/api/MediaSession.json +++ b/api/MediaSession.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Session", + "url": "https://wicg.github.io/mediasession/#the-mediasession-interface" + } + ] }, "metadata": { "__compat": { @@ -92,7 +98,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Session", + "url": "https://wicg.github.io/mediasession/#dom-mediasession-metadata" + } + ] } }, "playbackState": { @@ -140,7 +152,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Session", + "url": "https://wicg.github.io/mediasession/#dom-mediasession-playbackstate" + } + ] } }, "setActionHandler": { @@ -188,7 +206,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Session", + "url": "https://wicg.github.io/mediasession/#dom-mediasession-setactionhandler" + } + ] } } } diff --git a/api/MediaSettingsRange.json b/api/MediaSettingsRange.json index 98d96f33087094..1cac5471543185 100644 --- a/api/MediaSettingsRange.json +++ b/api/MediaSettingsRange.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#mediasettingsrange-section" + } + ] }, "max": { "__compat": { @@ -92,7 +98,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-mediasettingsrange-max" + } + ] } }, "min": { @@ -140,7 +152,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-mediasettingsrange-min" + } + ] } }, "step": { @@ -188,7 +206,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-mediasettingsrange-step" + } + ] } } } diff --git a/api/MediaSource.json b/api/MediaSource.json index a42c31ce4140fd..d731b8a00e9445 100644 --- a/api/MediaSource.json +++ b/api/MediaSource.json @@ -73,7 +73,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#mediasource" + } + ] }, "MediaSource": { "__compat": { @@ -148,7 +154,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#mediasource" + } + ] } }, "sourceBuffers": { @@ -224,7 +236,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-MediaSource-sourceBuffers" + } + ] } }, "activeSourceBuffers": { @@ -300,7 +318,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-MediaSource-activeSourceBuffers" + } + ] } }, "readyState": { @@ -376,7 +400,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-MediaSource-readyState" + } + ] } }, "duration": { @@ -452,7 +482,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-MediaSource-duration" + } + ] } }, "onsourceclose": { @@ -735,7 +771,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-MediaSource-addSourceBuffer-SourceBuffer-DOMString-type" + } + ] } }, "removeSourceBuffer": { @@ -811,7 +853,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-MediaSource-removeSourceBuffer-void-SourceBuffer-sourceBuffer" + } + ] } }, "endOfStream": { @@ -887,7 +935,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-MediaSource-endOfStream-void-EndOfStreamError-error" + } + ] } }, "setLiveSeekableRange": { @@ -929,7 +983,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#dom-mediasource-setliveseekablerange" + } + ] } }, "clearLiveSeekableRange": { @@ -971,7 +1031,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#dom-mediasource-clearliveseekablerange" + } + ] } }, "isTypeSupported": { @@ -1047,7 +1113,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-MediaSource-isTypeSupported-boolean-DOMString-type" + } + ] } } } diff --git a/api/MediaStream.json b/api/MediaStream.json index 8ce4a81a323898..234e68230f7157 100644 --- a/api/MediaStream.json +++ b/api/MediaStream.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#mediastream" + } + ] }, "MediaStream": { "__compat": { @@ -101,7 +107,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#mediastream" + } + ] } }, "active": { @@ -155,7 +167,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStream-active" + } + ] } }, "ended": { @@ -276,7 +294,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStream-id" + } + ] } }, "onaddtrack": { @@ -330,7 +354,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#event-mediastream-addtrack" + } + ] } }, "onremovetrack": { @@ -384,7 +414,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStream-onremovetrack" + } + ] } }, "addTrack": { @@ -438,7 +474,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStream-addTrack-void-MediaStreamTrack-track" + } + ] } }, "clone": { @@ -492,7 +534,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStream-clone-MediaStream" + } + ] } }, "getAudioTracks": { @@ -546,7 +594,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediastream-getaudiotracks" + } + ] } }, "getTrackById": { @@ -600,7 +654,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStream-getTrackById-MediaStreamTrack-DOMString-trackId" + } + ] } }, "getTracks": { @@ -654,7 +714,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediastream-gettracks" + } + ] } }, "getVideoTracks": { @@ -708,7 +774,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediastream-getvideotracks" + } + ] } }, "removeTrack": { diff --git a/api/MediaStreamAudioDestinationNode.json b/api/MediaStreamAudioDestinationNode.json index b5aaba97356dfc..2b232c66e3ddd0 100644 --- a/api/MediaStreamAudioDestinationNode.json +++ b/api/MediaStreamAudioDestinationNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-mediastreamaudiodestinationnode-interface" + } + ] }, "MediaStreamAudioDestinationNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#idl-def-MediaStreamAudioDestinationNode" + } + ] } }, "stream": { @@ -153,7 +165,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-MediaStreamAudioDestinationNode-stream" + } + ] } } } diff --git a/api/MediaStreamAudioSourceNode.json b/api/MediaStreamAudioSourceNode.json index dc4e4000684165..ba484764f90a91 100644 --- a/api/MediaStreamAudioSourceNode.json +++ b/api/MediaStreamAudioSourceNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-mediastreamaudiosourcenode-interface" + } + ] }, "MediaStreamAudioSourceNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#idl-def-MediaStreamAudioSourceNode" + } + ] } }, "mediaStream": { diff --git a/api/MediaStreamConstraints.json b/api/MediaStreamConstraints.json index de53445c7388ed..cfe34d47361d61 100644 --- a/api/MediaStreamConstraints.json +++ b/api/MediaStreamConstraints.json @@ -104,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamConstraints-video" + } + ] } }, "audio": { @@ -158,7 +164,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamConstraints-audio" + } + ] } } } diff --git a/api/MediaStreamTrack.json b/api/MediaStreamTrack.json index 025534f6493d05..ca9d779550b55b 100644 --- a/api/MediaStreamTrack.json +++ b/api/MediaStreamTrack.json @@ -51,7 +51,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#mediastreamtrack" + }, + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#isolated-track" + } + ] }, "applyConstraints": { "__compat": { @@ -104,7 +114,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediatrackconstraints" + }, + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#mediatrackconstraintset-section" + } + ] } }, "clone": { @@ -158,7 +178,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediastreamtrack-clone" + } + ] } }, "contentHint": { @@ -266,7 +292,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediastreamtrack-enabled" + } + ] } }, "getCapabilities": { @@ -320,7 +352,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediastreamtrack-getcapabilities" + } + ] } }, "getConstraints": { @@ -374,7 +412,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediastreamtrack-getconstraints" + } + ] } }, "getSettings": { @@ -428,7 +472,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediastreamtrack-getsettings" + } + ] } }, "getSources": { @@ -539,7 +589,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamTrack-id" + } + ] } }, "isolated": { @@ -647,7 +703,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamTrack-kind" + } + ] } }, "label": { @@ -701,7 +763,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamTrack-label" + } + ] } }, "muted": { @@ -755,7 +823,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediastreamtrack-muted" + } + ] } }, "onended": { @@ -809,7 +883,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamTrack-onended" + } + ] } }, "onisolationchange": { @@ -917,7 +997,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamTrack-onmute" + } + ] } }, "onoverconstrained": { @@ -971,7 +1057,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamTrack-onoverconstrained" + } + ] } }, "onunmute": { @@ -1025,7 +1117,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamTrack-onunmute" + } + ] } }, "readonly": { @@ -1133,7 +1231,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamTrack-readystate" + } + ] } }, "remote": { @@ -1246,7 +1350,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaStreamTrack-stop" + } + ] } } } diff --git a/api/MediaStreamTrackEvent.json b/api/MediaStreamTrackEvent.json index 5bfaf1c049d274..f8f5768f622e93 100644 --- a/api/MediaStreamTrackEvent.json +++ b/api/MediaStreamTrackEvent.json @@ -51,7 +51,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#idl-def-MediaStreamTrackEvent" + } + ] }, "MediaStreamTrackEvent": { "__compat": { @@ -105,7 +111,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-ctor-MediaStreamTrackEvent--DOMString-type-MediaStreamTrackEventInit-eventInitDict" + } + ] } }, "track": { diff --git a/api/MediaTrackConstraints.json b/api/MediaTrackConstraints.json index 83ab94d3e1b5b8..5bf2c3e7e2b030 100644 --- a/api/MediaTrackConstraints.json +++ b/api/MediaTrackConstraints.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#dom-mediatrackconstraints" + }, + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#mediatrackconstraintset-section" + } + ] }, "aspectRatio": { "__compat": { @@ -92,7 +102,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-aspectRatio" + } + ] } }, "autoGainControl": { @@ -152,7 +168,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-autoGainControl" + } + ] } }, "channelCount": { @@ -200,7 +222,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-channelCount" + } + ] } }, "deviceId": { @@ -248,7 +276,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-deviceId" + } + ] } }, "echoCancellation": { @@ -296,7 +330,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-echoCancellation" + } + ] } }, "facingMode": { @@ -344,7 +384,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-facingMode" + } + ] } }, "frameRate": { @@ -392,7 +438,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-frameRate" + } + ] } }, "groupId": { @@ -440,7 +492,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-groupId" + } + ] } }, "height": { @@ -488,7 +546,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-height" + } + ] } }, "latency": { @@ -536,7 +600,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-latency" + } + ] } }, "noiseSuppression": { @@ -596,7 +666,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-noiseSuppression" + } + ] } }, "sampleRate": { @@ -644,7 +720,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-sampleRate" + } + ] } }, "sampleSize": { @@ -692,7 +774,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-sampleSize" + } + ] } }, "volume": { @@ -740,7 +828,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-volume" + } + ] } }, "width": { @@ -788,7 +882,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackConstraints-width" + } + ] } } } diff --git a/api/MediaTrackSettings.json b/api/MediaTrackSettings.json index 56de698a156f1e..55d8d3a137819b 100644 --- a/api/MediaTrackSettings.json +++ b/api/MediaTrackSettings.json @@ -92,7 +92,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-aspectRatio" + } + ] } }, "autoGainControl": { @@ -154,7 +160,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-autoGainControl" + } + ] } }, "channelCount": { @@ -202,7 +214,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-channelCount" + } + ] } }, "deviceId": { @@ -250,7 +268,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-deviceId" + } + ] } }, "echoCancellation": { @@ -298,7 +322,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-echoCancellation" + } + ] } }, "facingMode": { @@ -346,7 +376,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-facingMode" + } + ] } }, "frameRate": { @@ -394,7 +430,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-frameRate" + } + ] } }, "groupId": { @@ -442,7 +484,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-groupId" + } + ] } }, "height": { @@ -490,7 +538,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-height" + } + ] } }, "latency": { @@ -538,7 +592,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-latency" + } + ] } }, "noiseSuppression": { @@ -600,7 +660,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-noiseSuppression" + } + ] } }, "resizeMode": { @@ -696,7 +762,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-sampleRate" + } + ] } }, "sampleSize": { @@ -744,7 +816,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-sampleSize" + } + ] } }, "volume": { @@ -792,7 +870,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-volume" + } + ] } }, "width": { @@ -840,7 +924,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSettings-width" + } + ] } } } diff --git a/api/MediaTrackSupportedConstraints.json b/api/MediaTrackSupportedConstraints.json index c90fd0fa8daf9b..f6b97102c040df 100644 --- a/api/MediaTrackSupportedConstraints.json +++ b/api/MediaTrackSupportedConstraints.json @@ -92,7 +92,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-width" + } + ] } }, "height": { @@ -140,7 +146,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-height" + } + ] } }, "aspectRatio": { @@ -188,7 +200,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-aspectRatio" + } + ] } }, "frameRate": { @@ -236,7 +254,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-frameRate" + } + ] } }, "facingMode": { @@ -284,7 +308,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-facingMode" + } + ] } }, "resizeMode": { @@ -380,7 +410,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-volume" + } + ] } }, "sampleRate": { @@ -428,7 +464,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-sampleRate" + } + ] } }, "sampleSize": { @@ -476,7 +518,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-sampleSize" + } + ] } }, "echoCancellation": { @@ -524,7 +572,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-echoCancellation" + } + ] } }, "autoGainControl": { @@ -586,7 +640,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-autoGainControl" + } + ] } }, "noiseSuppression": { @@ -648,7 +708,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-noiseSuppression" + } + ] } }, "latency": { @@ -696,7 +762,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-latency" + } + ] } }, "channelCount": { @@ -744,7 +816,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-channelCount" + } + ] } }, "deviceId": { @@ -792,7 +870,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-deviceId" + } + ] } }, "groupId": { @@ -840,7 +924,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-MediaTrackSupportedConstraints-groupId" + } + ] } } } diff --git a/api/MessageChannel.json b/api/MessageChannel.json index 323f464b9f2e7b..07cec491ffb819 100644 --- a/api/MessageChannel.json +++ b/api/MessageChannel.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#message-channels" + } + ] }, "MessageChannel": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messagechannel" + } + ] } }, "port1": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messagechannel-port1" + } + ] } }, "port2": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messagechannel-port2" + } + ] } } } diff --git a/api/MessageEvent.json b/api/MessageEvent.json index de2988de8e168a..29126c2e51b94d 100644 --- a/api/MessageEvent.json +++ b/api/MessageEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#messageevent" + } + ] }, "MessageEvent": { "__compat": { @@ -404,7 +410,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-messageevent-ports" + } + ] } }, "source": { diff --git a/api/MessagePort.json b/api/MessagePort.json index b2ae7119690fd5..99fb56879b0dcd 100644 --- a/api/MessagePort.json +++ b/api/MessagePort.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#message-ports" + } + ] }, "worker_support": { "__compat": { @@ -149,7 +155,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messageport-close" + } + ] } }, "onmessage": { @@ -200,7 +212,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#handler-messageport-onmessage" + } + ] } }, "onmessageerror": { @@ -251,7 +269,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#handler-messageport-onmessageerror" + } + ] } }, "postMessage": { @@ -302,7 +326,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messageport-postmessage" + } + ] } }, "start": { @@ -353,7 +383,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#dom-messageport-start" + } + ] } } } diff --git a/api/Metadata.json b/api/Metadata.json index 2cac5b1ecc49ef..60d52c43bc893c 100644 --- a/api/Metadata.json +++ b/api/Metadata.json @@ -100,7 +100,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-metadata-modificationtime" + } + ] } }, "size": { @@ -151,7 +157,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "File System API", + "url": "https://wicg.github.io/entries-api/#dom-metadata-size" + } + ] } } } diff --git a/api/MimeType.json b/api/MimeType.json index 1035c313abe9b6..33d0047fd4b7df 100644 --- a/api/MimeType.json +++ b/api/MimeType.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#mimetype" + } + ] }, "description": { "__compat": { diff --git a/api/MimeTypeArray.json b/api/MimeTypeArray.json index 687204a207ded3..f4f6572c74bcc7 100644 --- a/api/MimeTypeArray.json +++ b/api/MimeTypeArray.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#mimetypearray" + } + ] }, "item": { "__compat": { diff --git a/api/MouseEvent.json b/api/MouseEvent.json index 4d17fbe5d7be9a..5d60aece573505 100644 --- a/api/MouseEvent.json +++ b/api/MouseEvent.json @@ -48,7 +48,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#extensions-to-the-mouseevent-interface" + }, + { + "name": "Pointer Lock", + "url": "https://w3c.github.io/pointerlock/#extensions-to-the-mouseevent-interface" + }, + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#extensions-to-the-mouseevent-interface" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#events-mouseevents" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] }, "MouseEvent": { "__compat": { @@ -99,7 +121,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#extensions-to-the-mouseevent-interface" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#interface-MouseEvent" + } + ] }, "region_support": { "__compat": { @@ -260,7 +292,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-altKey" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] } }, "button": { @@ -317,7 +359,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-button" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] } }, "buttons": { @@ -369,7 +421,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-buttons" + } + ] } }, "clientX": { @@ -420,7 +478,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mouseevent-clientx" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-clientX" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] }, "long_to_double": { "__compat": { @@ -522,7 +594,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mouseevent-clienty" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-clientY" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] }, "long_to_double": { "__compat": { @@ -624,7 +710,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-ctrlKey" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] } }, "getModifierState": { @@ -675,7 +771,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-getModifierState" + } + ] }, "accel_support": { "__compat": { @@ -828,7 +930,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-metaKey" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] } }, "movementX": { @@ -907,7 +1019,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Lock", + "url": "https://w3c.github.io/pointerlock/#widl-MouseEvent-movementX" + } + ] } }, "movementY": { @@ -986,7 +1104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Lock", + "url": "https://w3c.github.io/pointerlock/#widl-MouseEvent-movementY" + } + ] } }, "offsetX": { @@ -1037,7 +1161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mouseevent-offsetx" + } + ] }, "long_to_double": { "__compat": { @@ -1139,7 +1269,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mouseevent-offsety" + } + ] }, "long_to_double": { "__compat": { @@ -1241,7 +1377,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mouseevent-pagex" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-Touch-pageX" + } + ] }, "long_to_double": { "__compat": { @@ -1343,7 +1489,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mouseevent-pagey" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-Touch-pagey" + } + ] }, "long_to_double": { "__compat": { @@ -1517,7 +1673,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-relatedTarget" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] } }, "screenX": { @@ -1568,7 +1734,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mouseevent-screenx" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-screenX" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] }, "long_to_double": { "__compat": { @@ -1670,7 +1850,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mouseevent-screeny" + }, + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-screenY" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] }, "long_to_double": { "__compat": { @@ -1772,7 +1966,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-MouseEvent-shiftKey" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent" + } + ] } }, "which": { @@ -1876,7 +2080,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mouseevent-x" + } + ] } }, "y": { @@ -1927,7 +2137,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-mouseevent-y" + } + ] } } } diff --git a/api/MutationObserver.json b/api/MutationObserver.json index 7c4b1027164410..68e96b9fcc7958 100644 --- a/api/MutationObserver.json +++ b/api/MutationObserver.json @@ -83,7 +83,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#mutationobserver" + } + ] }, "MutationObserver": { "__compat": { @@ -169,7 +175,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-mutationobserver-mutationobserver" + } + ] } }, "observe": { @@ -220,7 +232,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-mutationobserver-observe" + } + ] } }, "disconnect": { @@ -271,7 +289,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-mutationobserver-disconnect" + } + ] } }, "takeRecords": { @@ -322,7 +346,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-mutationobserver-takerecords" + } + ] } } } diff --git a/api/MutationObserverInit.json b/api/MutationObserverInit.json index 5bfc9a4233446a..f474e6bb93b304 100644 --- a/api/MutationObserverInit.json +++ b/api/MutationObserverInit.json @@ -70,7 +70,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dictdef-mutationobserverinit" + } + ] }, "attributeFilter": { "__compat": { @@ -142,7 +148,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dictdef-mutationobserverinit" + } + ] } }, "attributeOldValue": { @@ -217,7 +229,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-mutationobserverinit-attributeoldvalue" + } + ] } }, "attributes": { @@ -292,7 +310,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-mutationobserverinit-attributes" + } + ] } }, "characterData": { @@ -367,7 +391,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-mutationobserverinit-characterdata" + } + ] } }, "characterDataOldValue": { @@ -442,7 +472,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-mutationobserverinit-characterdataoldvalue" + } + ] } }, "childList": { @@ -515,7 +551,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-mutationobserverinit-childlist" + } + ] } }, "subtree": { @@ -588,7 +630,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-mutationobserverinit-subtree" + } + ] } } } diff --git a/api/MutationRecord.json b/api/MutationRecord.json index 78ab881843e5d9..7c18d69eaecd22 100644 --- a/api/MutationRecord.json +++ b/api/MutationRecord.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#mutationrecord" + } + ] }, "type": { "__compat": { diff --git a/api/NamedNodeMap.json b/api/NamedNodeMap.json index 6ee64cc111ce82..eac956bc5298a3 100644 --- a/api/NamedNodeMap.json +++ b/api/NamedNodeMap.json @@ -67,7 +67,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-namednodemap" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1780488922" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1780488922" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/core.html#ID-1780488922" + } + ] }, "getNamedItem": { "__compat": { diff --git a/api/NavigationPreloadManager.json b/api/NavigationPreloadManager.json index 80d43919b51435..67ec7199b86ad4 100644 --- a/api/NavigationPreloadManager.json +++ b/api/NavigationPreloadManager.json @@ -50,7 +50,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#navigation-preload-manager" + } + ] }, "enable": { "__compat": { diff --git a/api/Navigator.json b/api/Navigator.json index 58e4f974eba578..9ee1fe0ed39652 100644 --- a/api/Navigator.json +++ b/api/Navigator.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#the-navigator-object" + } + ] }, "activeVRDisplays": { "__compat": { @@ -369,7 +375,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Clipboard API", + "url": "https://w3c.github.io/clipboard-apis/#navigator-clipboard" + } + ] } }, "connection": { @@ -421,7 +433,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Network Information", + "url": "https://w3c.github.io/netinfo/#-dfn-connection-dfn-attribute" + } + ] } }, "cookieEnabled": { @@ -474,7 +492,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-navigator-cookieenabled" + } + ] } }, "credentials": { @@ -576,7 +600,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Device Memory", + "url": "https://w3c.github.io/device-memory/#sec-device-memory-js-api" + } + ] } }, "doNotTrack": { @@ -636,7 +666,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Tracking", + "url": "https://www.w3.org/2011/tracking-protection/drafts/tracking-dnt.html#widl-Navigator-doNotTrack" + } + ] } }, "geolocation": { @@ -693,7 +729,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#navi-geo" + } + ] }, "secure_context_only": { "__compat": { @@ -1091,7 +1133,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Locks", + "url": "https://wicg.github.io/web-locks/#navigator-mixins" + } + ] } }, "maxTouchPoints": { @@ -1270,7 +1318,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Capture", + "url": "https://w3c.github.io/mediacapture-main/#widl-NavigatorUserMedia-mediaDevices" + } + ] } }, "mediaSession": { @@ -1583,7 +1637,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-productsub" + } + ] } }, "registerContentHandler": { @@ -1687,7 +1747,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/system-state.html#custom-handlers" + } + ] }, "secure_context_required": { "__compat": { @@ -1819,7 +1885,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "EME", + "url": "https://w3c.github.io/encrypted-media/#navigator-extension-requestmediakeysystemaccess" + } + ] } }, "sendBeacon": { @@ -1875,7 +1947,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Beacon", + "url": "https://w3c.github.io/beacon/#sec-sendBeacon-method" + } + ] } }, "serviceWorker": { @@ -1938,7 +2016,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#navigator-service-worker" + } + ] } }, "share": { @@ -2040,7 +2124,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-vendor" + } + ] } }, "vendorSub": { @@ -2091,7 +2181,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-vendorsub" + } + ] } }, "vibrate": { diff --git a/api/NavigatorConcurrentHardware.json b/api/NavigatorConcurrentHardware.json index 75e349b7747fb4..c4138c72c7eb75 100644 --- a/api/NavigatorConcurrentHardware.json +++ b/api/NavigatorConcurrentHardware.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#navigatorconcurrenthardware" + } + ] }, "worker_support": { "__compat": { @@ -149,7 +155,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-hardwareconcurrency" + } + ] } } } diff --git a/api/NavigatorGeolocation.json b/api/NavigatorGeolocation.json index adb3e4b730d2fd..470c1ef6e34681 100644 --- a/api/NavigatorGeolocation.json +++ b/api/NavigatorGeolocation.json @@ -54,7 +54,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#navi-geo" + } + ] } } } diff --git a/api/NavigatorID.json b/api/NavigatorID.json index dec6a38daaf715..d54ef2c114be49 100644 --- a/api/NavigatorID.json +++ b/api/NavigatorID.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#navigatorid" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#navigatorid" + } + ] }, "appCodeName": { "__compat": { @@ -92,7 +102,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-appcodename" + } + ] } }, "appName": { @@ -140,7 +156,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-appname" + } + ] } }, "appVersion": { @@ -188,7 +210,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-appversion" + } + ] } }, "platform": { @@ -236,7 +264,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-platform" + } + ] } }, "product": { @@ -284,7 +318,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-product" + } + ] } }, "taintEnabled": { @@ -380,7 +420,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-useragent" + } + ] } } } diff --git a/api/NavigatorLanguage.json b/api/NavigatorLanguage.json index a642853319043b..49a5c14a323ba0 100644 --- a/api/NavigatorLanguage.json +++ b/api/NavigatorLanguage.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#navigatorlanguage" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#navigatorlanguage" + } + ] }, "worker_support": { "__compat": { @@ -151,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-language" + } + ] } }, "languages": { @@ -205,7 +221,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-languages" + } + ] } } } diff --git a/api/NavigatorOnLine.json b/api/NavigatorOnLine.json index 1b59bf4d6b7918..2e993282f3df2b 100644 --- a/api/NavigatorOnLine.json +++ b/api/NavigatorOnLine.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#navigatoronline" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#navigatoronline" + } + ] }, "worker_support": { "__compat": { @@ -151,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-navigator-online" + } + ] } } } diff --git a/api/NavigatorPlugins.json b/api/NavigatorPlugins.json index 286fe8aebbbafe..d1c9ea2b6c80ff 100644 --- a/api/NavigatorPlugins.json +++ b/api/NavigatorPlugins.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#navigatorplugins" + } + ] }, "mimeTypes": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-mimetypes" + } + ] } }, "plugins": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-plugins" + } + ] } }, "javaEnabled": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator-javaenabled" + } + ] } } } diff --git a/api/NavigatorStorage.json b/api/NavigatorStorage.json index 76ce51df2eadd3..e37ce3c44aad2e 100644 --- a/api/NavigatorStorage.json +++ b/api/NavigatorStorage.json @@ -130,7 +130,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Storage", + "url": "https://storage.spec.whatwg.org/#navigatorstorage" + } + ] } } } diff --git a/api/NetworkInformation.json b/api/NetworkInformation.json index a8fd03cdb23ca0..a711ec06a15930 100644 --- a/api/NetworkInformation.json +++ b/api/NetworkInformation.json @@ -42,7 +42,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Network Information", + "url": "https://w3c.github.io/netinfo/#-dfn-networkinformation-dfn-interface" + } + ] }, "worker_support": { "__compat": { @@ -131,7 +137,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Network Information", + "url": "https://w3c.github.io/netinfo/#dom-networkinformation-downlink" + } + ] } }, "downlinkMax": { @@ -176,7 +188,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Network Information", + "url": "https://w3c.github.io/netinfo/#dom-networkinformation-downlinkmax" + } + ] } }, "effectiveType": { @@ -221,7 +239,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Network Information", + "url": "https://w3c.github.io/netinfo/#dom-networkinformation-effectivetype" + } + ] } }, "onchange": { @@ -267,7 +291,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Network Information", + "url": "https://w3c.github.io/netinfo/#dom-networkinformation-onchange" + } + ] } }, "rtt": { @@ -312,7 +342,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Network Information", + "url": "https://w3c.github.io/netinfo/#dom-networkinformation-rtt" + } + ] } }, "type": { @@ -357,7 +393,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Network Information", + "url": "https://w3c.github.io/netinfo/#dom-networkinformation-type" + } + ] } } } diff --git a/api/Node.json b/api/Node.json index 9099f742adbc8f..63c91ca1fe1d96 100644 --- a/api/Node.json +++ b/api/Node.json @@ -55,7 +55,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-node" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1950641247" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1950641247" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-1950641247" + } + ] }, "appendChild": { "__compat": { @@ -102,7 +120,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-appendchild" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-184E7107" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-184E7107" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-184E7107" + } + ] } }, "baseURI": { @@ -255,7 +291,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-childnodes" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1451460987" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1451460987" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-1451460987" + } + ] } }, "cloneNode": { @@ -303,7 +357,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-clonenode" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-3A0ED0A4" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-3A0ED0A4" + } + ] }, "deep_defaults_to_false": { "__compat": { @@ -424,7 +492,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-comparedocumentposition" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-compareDocumentPosition" + } + ] } }, "contains": { @@ -472,7 +550,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-contains" + } + ] } }, "firstChild": { @@ -523,7 +607,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-firstchild" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-169727388" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-169727388" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-169727388" + } + ] } }, "getFeature": { @@ -619,7 +721,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-getrootnode" + } + ] } }, "getUserData": { @@ -816,7 +924,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#the-innertext-idl-attribute" + } + ] } }, "insertBefore": { @@ -864,7 +978,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-insertbefore" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-node-insertbefore" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-952280727" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-952280727" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-insertBefore" + } + ] } }, "isConnected": { @@ -915,7 +1051,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-isconnected" + } + ] } }, "isDefaultNamespace": { @@ -1011,7 +1153,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-isequalnode" + } + ] } }, "isSameNode": { @@ -1071,7 +1219,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-node" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-isSameNode" + } + ] } }, "isSupported": { @@ -1121,7 +1279,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-node" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#Level-2-Core-Node-supports" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-Node-supports" + } + ] } }, "lastChild": { @@ -1172,7 +1344,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-lastchild" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-61AD09FB" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-61AD09FB" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-61AD09FB" + } + ] } }, "localName": { @@ -1596,7 +1786,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-nodetype" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1950641247" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-111237558" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-111237558" + } + ] } }, "nodeValue": { @@ -1810,7 +2018,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-node-ownerdocument" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#node-ownerDoc" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#node-ownerDoc" + } + ] } }, "parentElement": { @@ -2272,7 +2494,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-node-textcontent" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-node-textcontent" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-textContent" + } + ] } } } diff --git a/api/NodeFilter.json b/api/NodeFilter.json index 0ddf0046c9546b..f697888f74f795 100644 --- a/api/NodeFilter.json +++ b/api/NodeFilter.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-nodefilter" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeFilter" + } + ] }, "acceptNode": { "__compat": { @@ -98,7 +108,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#nodeFilter" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeFilter" + } + ] } } } diff --git a/api/NodeIterator.json b/api/NodeIterator.json index 3c9307634e7de2..dc30f8425ad8ea 100644 --- a/api/NodeIterator.json +++ b/api/NodeIterator.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#nodeiterator" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Iterator-overview" + } + ] }, "expandEntityReferences": { "__compat": { @@ -151,7 +161,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-nodeiterator-filter" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeIterator-filter" + } + ] } }, "pointerBeforeReferenceNode": { @@ -202,7 +222,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-nodeiterator-pointerbeforereferencenode" + } + ] } }, "referenceNode": { @@ -253,7 +279,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-nodeiterator-referencenode" + } + ] } }, "root": { @@ -304,7 +336,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-nodeiterator-root" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeIterator-root" + } + ] } }, "whatToShow": { @@ -355,7 +397,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-nodeiterator-whattoshow" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeIterator-whatToShow" + } + ] } }, "detach": { @@ -459,7 +511,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-nodeiterator-nextnode" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeIterator-nextNode" + } + ] } }, "previousNode": { @@ -510,7 +572,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-nodeiterator-previousnode" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeIterator-previousNode" + } + ] } } } diff --git a/api/NodeList.json b/api/NodeList.json index 2197c2c16e4c83..498409e332f830 100644 --- a/api/NodeList.json +++ b/api/NodeList.json @@ -48,7 +48,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-nodelist" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-536297177" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-536297177" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-536297177" + } + ] }, "length": { "__compat": { @@ -149,7 +167,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-nodelist" + } + ] } }, "forEach": { @@ -200,7 +224,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-nodelist" + }, + { + "name": "WebIDL", + "url": "https://heycam.github.io/webidl/#es-forEach" + } + ] } }, "item": { @@ -302,7 +336,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-nodelist" + } + ] } }, "values": { @@ -353,7 +393,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-nodelist" + } + ] } } } diff --git a/api/NonDocumentTypeChildNode.json b/api/NonDocumentTypeChildNode.json index 9c609b21c45fd1..39e12d5f9f752a 100644 --- a/api/NonDocumentTypeChildNode.json +++ b/api/NonDocumentTypeChildNode.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-childnode" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#interface-elementTraversal" + } + ] }, "CharacterData_support": { "__compat": { @@ -141,7 +151,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-nondocumenttypechildnode-nextelementsibling" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#attribute-nextElementSibling" + } + ] } }, "previousElementSibling": { @@ -189,7 +209,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-nondocumenttypechildnode-previouselementsibling" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#attribute-previousElementSibling" + } + ] } } } diff --git a/api/Notification.json b/api/Notification.json index 11dda4251c97f4..8bd42ca1bf1d90 100644 --- a/api/Notification.json +++ b/api/Notification.json @@ -238,7 +238,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-notificationtitle-options" + } + ] } }, "actions": { @@ -289,7 +295,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-actions" + } + ] } }, "badge": { @@ -340,7 +352,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-badge" + } + ] } }, "body": { @@ -391,7 +409,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-body" + } + ] } }, "data": { @@ -442,7 +466,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-data" + } + ] } }, "dir": { @@ -493,7 +523,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-dir" + } + ] } }, "icon": { @@ -562,7 +598,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-icon" + } + ] } }, "image": { @@ -613,7 +655,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#image-resource" + } + ] } }, "lang": { @@ -664,7 +712,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-lang" + } + ] } }, "maxActions": { @@ -766,7 +820,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-onclick" + } + ] } }, "onclose": { @@ -868,7 +928,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-onerror" + } + ] } }, "onshow": { @@ -970,7 +1036,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-permission" + } + ] } }, "renotify": { @@ -1021,7 +1093,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-renotify" + } + ] } }, "requireInteraction": { @@ -1072,7 +1150,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-requireinteraction" + } + ] } }, "silent": { @@ -1123,7 +1207,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-silent" + } + ] } }, "tag": { @@ -1174,7 +1264,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-tag" + } + ] } }, "timestamp": { @@ -1225,7 +1321,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-timestamp" + } + ] } }, "title": { @@ -1276,7 +1378,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-title" + } + ] } }, "vibrate": { @@ -1327,7 +1435,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-vibrate" + } + ] } }, "close": { diff --git a/api/NotificationEvent.json b/api/NotificationEvent.json index bdf3f3cc44ef21..421fb2669069ce 100644 --- a/api/NotificationEvent.json +++ b/api/NotificationEvent.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#notificationevent" + } + ] }, "NotificationEvent": { "__compat": { @@ -101,7 +107,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notificationevent-notificationeventtype-eventinitdict" + } + ] } }, "notification": { @@ -153,7 +165,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notificationevent-notification" + } + ] } }, "action": { @@ -205,7 +223,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-notification-actions" + } + ] } } } diff --git a/api/OfflineAudioCompletionEvent.json b/api/OfflineAudioCompletionEvent.json index d205c5385a2f78..14a83d59f53ef4 100644 --- a/api/OfflineAudioCompletionEvent.json +++ b/api/OfflineAudioCompletionEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEvent" + } + ] }, "OfflineAudioCompletionEvent": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEvent" + } + ] } }, "renderedBuffer": { @@ -153,7 +165,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletionevent-renderedbuffer" + } + ] } } } diff --git a/api/OfflineAudioContext.json b/api/OfflineAudioContext.json index 93d08ecb53a2bb..1f74394eadbcb7 100644 --- a/api/OfflineAudioContext.json +++ b/api/OfflineAudioContext.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext" + } + ] }, "OfflineAudioContext": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext" + } + ] }, "Parameters_accepted_in_an_object": { "__compat": { @@ -204,7 +216,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OfflineAudioContext-length" + } + ] } }, "oncomplete": { @@ -255,7 +273,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OfflineAudioContext-oncomplete" + } + ] } }, "resume": { @@ -306,7 +330,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OfflineAudioContext-resume-Promise-void" + } + ] } }, "suspend": { @@ -357,7 +387,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OfflineAudioContext-suspend-Promise-void--double-suspendTime" + } + ] } }, "startRendering": { @@ -408,7 +444,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OfflineAudioContext-startRendering-Promise-AudioBuffer" + } + ] }, "Promise_based_startRendering": { "__compat": { diff --git a/api/OffscreenCanvas.json b/api/OffscreenCanvas.json index e7b4e982c2aac8..72802411655d79 100644 --- a/api/OffscreenCanvas.json +++ b/api/OffscreenCanvas.json @@ -90,7 +90,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#the-offscreencanvas-interface" + } + ] }, "OffscreenCanvas": { "__compat": { @@ -153,7 +159,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-offscreencanvas" + } + ] } }, "height": { @@ -216,7 +228,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-offscreencanvas-height" + } + ] } }, "width": { @@ -279,7 +297,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-offscreencanvas-width" + } + ] } }, "getContext": { @@ -342,7 +366,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-offscreencanvas-getcontext" + } + ] }, "webgl_context": { "__compat": { @@ -708,7 +738,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-offscreencanvas-transfertoimagebitmap" + } + ] } } } diff --git a/api/OrientationSensor.json b/api/OrientationSensor.json index c1e660b33218f9..d386c842ac6a4c 100644 --- a/api/OrientationSensor.json +++ b/api/OrientationSensor.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Orientation Sensor", + "url": "https://www.w3.org/TR/orientation-sensor/#orientationsensor-interface" + } + ] }, "quaternion": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Orientation Sensor", + "url": "https://www.w3.org/TR/orientation-sensor/#orientationsensor-quaternion" + } + ] } }, "populateMatrix": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Orientation Sensor", + "url": "https://www.w3.org/TR/orientation-sensor/#orientationsensor-populatematrix" + } + ] } } } diff --git a/api/OscillatorNode.json b/api/OscillatorNode.json index 0f0bacc99fec22..08640e84c22acb 100644 --- a/api/OscillatorNode.json +++ b/api/OscillatorNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-oscillatornode-interface" + } + ] }, "OscillatorNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-oscillatornode-interface" + } + ] } }, "detune": { @@ -153,7 +165,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OscillatorNode-detune" + } + ] } }, "frequency": { @@ -204,7 +222,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OscillatorNode-frequency" + } + ] } }, "onended": { @@ -255,7 +279,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OscillatorNode-onended" + } + ] } }, "type": { @@ -306,7 +336,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OscillatorNode-type" + } + ] } }, "setPeriodicWave": { @@ -357,7 +393,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OscillatorNode-setPeriodicWave-void-PeriodicWave-periodicWave" + } + ] } }, "start": { @@ -410,7 +452,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OscillatorNode-start-void-double-when" + } + ] } }, "stop": { @@ -463,7 +511,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-OscillatorNode-stop-void-double-when" + } + ] } } } diff --git a/api/PageTransitionEvent.json b/api/PageTransitionEvent.json index ca83b28a415360..3dff42a2739343 100644 --- a/api/PageTransitionEvent.json +++ b/api/PageTransitionEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#the-pagetransitionevent-interface" + } + ] }, "persisted": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-pagetransitionevent-persisted" + } + ] } } } diff --git a/api/PannerNode.json b/api/PannerNode.json index 65231848d3c0cf..cba5927a3814df 100644 --- a/api/PannerNode.json +++ b/api/PannerNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-pannernode-interface" + } + ] }, "PannerNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-pannernode-interface" + } + ] } }, "coneInnerAngle": { @@ -153,7 +165,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-coneInnerAngle" + } + ] } }, "coneOuterAngle": { @@ -204,7 +222,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-coneOuterAngle" + } + ] } }, "coneOuterGain": { @@ -255,7 +279,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-coneOuterGain" + } + ] } }, "distanceModel": { @@ -306,7 +336,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-distanceModel" + } + ] } }, "maxDistance": { @@ -357,7 +393,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-maxDistance" + } + ] } }, "orientationX": { @@ -408,7 +450,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-orientationX" + } + ] } }, "orientationY": { @@ -459,7 +507,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-orientationY" + } + ] } }, "orientationZ": { @@ -510,7 +564,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-orientationZ" + } + ] } }, "panningModel": { @@ -561,7 +621,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-panningModel" + } + ] } }, "positionX": { @@ -612,7 +678,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-positionX" + } + ] } }, "positionY": { @@ -663,7 +735,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-positionY" + } + ] } }, "positionZ": { @@ -714,7 +792,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-positionZ" + } + ] } }, "refDistance": { @@ -765,7 +849,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-refDistance" + } + ] } }, "rolloffFactor": { @@ -816,7 +906,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-rolloffFactor" + } + ] } }, "setOrientation": { @@ -867,7 +963,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-setOrientation-void-double-x-double-y-double-z" + } + ] } }, "setPosition": { @@ -918,7 +1020,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-PannerNode-setPosition-void-double-x-double-y-double-z" + } + ] } }, "setVelocity": { diff --git a/api/ParentNode.json b/api/ParentNode.json index 2d4c094d67183a..353649e6127d75 100644 --- a/api/ParentNode.json +++ b/api/ParentNode.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#parentnode" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#interface-elementTraversal" + } + ] }, "document_documentfragment": { "__compat": { @@ -149,7 +159,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-parentnode-childElementCount" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#attribute-childElementCount" + } + ] }, "document_documentfragment": { "__compat": { @@ -252,7 +272,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-parentnode-children" + } + ] }, "document_documentfragment": { "__compat": { @@ -405,7 +431,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-parentnode-firstelementchild" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#attribute-firstElementChild" + } + ] }, "document_documentfragment": { "__compat": { @@ -507,7 +543,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-parentnode-lastelementchild" + }, + { + "name": "Element Traversal", + "url": "https://www.w3.org/TR/ElementTraversal/#attribute-lastElementChild" + } + ] }, "document_documentfragment": { "__compat": { @@ -609,7 +655,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-parentnode-append" + } + ] } }, "prepend": { @@ -660,7 +712,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-parentnode-prepend" + } + ] } }, "querySelectorAll": { @@ -712,7 +770,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-parentnode-queryselectorall" + }, + { + "name": "Selectors API Level 2", + "url": "https://dev.w3.org/2006/webapi/selectors-api2/#dom-parentnode-queryselectorall" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#dom-parentnode-queryselectorall" + }, + { + "name": "Selectors API Level 1", + "url": "https://www.w3.org/TR/selectors-api/#interface-definitions" + } + ] } } } diff --git a/api/PasswordCredential.json b/api/PasswordCredential.json index d2f826ac148ee8..d0f9303f0d60a0 100644 --- a/api/PasswordCredential.json +++ b/api/PasswordCredential.json @@ -164,7 +164,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Credential Management", + "url": "https://w3c.github.io/webappsec-credential-management/#dom-credentialuserdata-iconurl" + } + ] } }, "idName": { @@ -248,7 +254,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Credential Management", + "url": "https://w3c.github.io/webappsec-credential-management/#dom-credentialuserdata-name" + } + ] } }, "password": { @@ -290,7 +302,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Credential Management", + "url": "https://w3c.github.io/webappsec-credential-management/#dom-passwordcredential-password" + } + ] } }, "passwordName": { diff --git a/api/Path2D.json b/api/Path2D.json index 7bf686ebd97073..ce1613c4379838 100644 --- a/api/Path2D.json +++ b/api/Path2D.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-path2d" + } + ] }, "Path2D": { "__compat": { @@ -100,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-path2d" + } + ] } }, "addPath": { @@ -151,7 +163,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-path2d-addpath" + } + ] } } } diff --git a/api/PaymentAddress.json b/api/PaymentAddress.json index e322841dc1521d..403ed4781a3911 100644 --- a/api/PaymentAddress.json +++ b/api/PaymentAddress.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentaddress-interface" + } + ] }, "country": { "__compat": { @@ -126,7 +132,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentaddress" + } + ] } }, "addressLine": { @@ -191,7 +203,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentaddress-addressline" + } + ] } }, "region": { @@ -256,7 +274,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentaddress-region" + } + ] } }, "city": { @@ -321,7 +345,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentaddress-city" + } + ] } }, "dependentLocality": { @@ -386,7 +416,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentaddress-dependentlocality" + } + ] } }, "postalCode": { @@ -451,7 +487,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentaddress-postalcode" + } + ] } }, "sortingCode": { @@ -516,7 +558,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentaddress-sortingcode" + } + ] } }, "languageCode": { @@ -581,7 +629,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentaddress-languagecode" + } + ] } }, "organization": { @@ -646,7 +700,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentaddress-organization" + } + ] } }, "recipient": { @@ -711,7 +771,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentaddress-recipient" + } + ] } }, "phone": { @@ -776,7 +842,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentaddress-phone" + } + ] } }, "toJSON": { @@ -841,7 +913,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#tojson-method" + } + ] } } } diff --git a/api/PaymentDetailsBase.json b/api/PaymentDetailsBase.json index 0a19f83473ff44..75b0451b56751f 100644 --- a/api/PaymentDetailsBase.json +++ b/api/PaymentDetailsBase.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentdetailsbase" + } + ] }, "displayItems": { "__compat": { diff --git a/api/PaymentDetailsUpdate.json b/api/PaymentDetailsUpdate.json index 7701ebdb1a32c8..cb05832572a12e 100644 --- a/api/PaymentDetailsUpdate.json +++ b/api/PaymentDetailsUpdate.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentdetailsupdate" + } + ] }, "error": { "__compat": { @@ -191,7 +197,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentdetailsupdate-shippingaddresserrors" + } + ] } }, "total": { diff --git a/api/PaymentMethodChangeEvent.json b/api/PaymentMethodChangeEvent.json index 613a5a7e60780d..a39ff181c54931 100644 --- a/api/PaymentMethodChangeEvent.json +++ b/api/PaymentMethodChangeEvent.json @@ -62,7 +62,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#PaymentMethodChangeEvent-interface" + } + ] }, "methodDetails": { "__compat": { @@ -126,7 +132,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentmethodchangeevent-methoddetails" + } + ] } }, "methodName": { @@ -191,7 +203,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentmethodchangeevent-methodname" + } + ] } } } diff --git a/api/PaymentRequest.json b/api/PaymentRequest.json index a05c8700ce2f8c..a4a1a23d005c3b 100644 --- a/api/PaymentRequest.json +++ b/api/PaymentRequest.json @@ -76,7 +76,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentrequest-interface" + } + ] }, "PaymentRequest": { "__compat": { @@ -155,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#constructor" + } + ] } }, "abort": { @@ -234,7 +246,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentrequest-abort()" + } + ] } }, "canMakePayment": { @@ -313,7 +331,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request//#canmakepayment()-method" + } + ] } }, "id": { @@ -378,7 +402,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentrequest-id" + } + ] } }, "onpaymentmethodchange": { @@ -443,7 +473,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#onpaymentmethodchange-attribute" + } + ] } }, "onshippingaddresschange": { @@ -522,7 +558,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#onshippingaddresschange-attribute" + } + ] } }, "onshippingoptionchange": { @@ -601,7 +643,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#onshippingoptionchange-attribute" + } + ] } }, "paymentAddress": { @@ -826,7 +874,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#shippingoption" + } + ] } }, "shippingType": { @@ -905,7 +959,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentrequest-shippingtype" + } + ] } }, "show": { @@ -984,7 +1044,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#show()-method" + } + ] } } } diff --git a/api/PaymentRequestEvent.json b/api/PaymentRequestEvent.json index 4c47373f6b66b7..11f98d658c5383 100644 --- a/api/PaymentRequestEvent.json +++ b/api/PaymentRequestEvent.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment Handler", + "url": "https://w3c.github.io/payment-handler/#the-paymentrequestevent" + } + ] }, "PaymentRequestEvent": { "__compat": { @@ -127,7 +133,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment Handler", + "url": "https://w3c.github.io/payment-handler/#the-paymentrequestevent" + } + ] } }, "instrumentKey": { @@ -192,7 +204,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment Handler", + "url": "https://w3c.github.io/payment-handler/#instrumentkey-attribute" + } + ] } }, "methodData": { @@ -257,7 +275,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment Handler", + "url": "https://w3c.github.io/payment-handler/#methoddata-attribute" + } + ] } }, "modifiers": { @@ -322,7 +346,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment Handler", + "url": "https://w3c.github.io/payment-handler/#modifiers-attribute" + } + ] } }, "openWindow": { @@ -387,7 +417,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment Handler", + "url": "https://w3c.github.io/payment-handler/#openwindow-method" + } + ] } }, "paymentRequestId": { @@ -452,7 +488,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment Handler", + "url": "https://w3c.github.io/payment-handler/#paymentrequestid-attribute" + } + ] } }, "paymentRequestOrigin": { @@ -517,7 +559,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment Handler", + "url": "https://w3c.github.io/payment-handler/#paymentrequestorigin-attribute" + } + ] } }, "respondWith": { @@ -726,7 +774,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment Handler", + "url": "https://w3c.github.io/payment-handler/#total-attribute" + } + ] } } } diff --git a/api/PaymentRequestUpdateEvent.json b/api/PaymentRequestUpdateEvent.json index 1037b5de6e577a..58381bacc47d39 100644 --- a/api/PaymentRequestUpdateEvent.json +++ b/api/PaymentRequestUpdateEvent.json @@ -76,7 +76,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentrequestupdateevent-interface" + } + ] }, "PaymentRequestUpdateEvent": { "__compat": { @@ -155,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentrequestupdateevent-interface" + } + ] } }, "updateWith": { @@ -234,7 +246,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#updatewith()-method" + } + ] } } } diff --git a/api/PaymentResponse.json b/api/PaymentResponse.json index f7f2eab710256c..cf2b55b1b0c236 100644 --- a/api/PaymentResponse.json +++ b/api/PaymentResponse.json @@ -76,7 +76,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentresponse-interface" + } + ] }, "details": { "__compat": { @@ -391,7 +397,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentresponse-payername" + } + ] } }, "payerPhone": { @@ -549,7 +561,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#dom-paymentresponse-requestid" + } + ] } }, "shippingAddress": { @@ -786,7 +804,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Payment", + "url": "https://w3c.github.io/payment-request/#paymentresponse-interface" + } + ] } }, "toJSON": { diff --git a/api/Performance.json b/api/Performance.json index 4b401d2ec31550..f5d3f79d56461b 100644 --- a/api/Performance.json +++ b/api/Performance.json @@ -45,7 +45,45 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Highres Time Level 3", + "url": "https://w3c.github.io/hr-time/#dom-performance-timeorigin" + }, + { + "name": "Highres Time Level 2", + "url": "https://www.w3.org/TR/hr-time-2/#the-performance-interface" + }, + { + "name": "Highres Time", + "url": "https://www.w3.org/TR/hr-time-1/#the-performance-interface" + }, + { + "name": "Navigation Timing", + "url": "https://www.w3.org/TR/navigation-timing/#sec-window.performance-attribute" + }, + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#extensions-to-the-performance-interface" + }, + { + "name": "Performance Timeline", + "url": "https://www.w3.org/TR/performance-timeline/#sec-window.performance-attribute" + }, + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#extensions-performance-interface" + }, + { + "name": "User Timing Level 2", + "url": "https://w3c.github.io/user-timing/#extensions-performance-interface" + }, + { + "name": "User Timing", + "url": "https://www.w3.org/TR/user-timing/#extensions-performance-interface" + } + ] }, "clearMarks": { "__compat": { @@ -92,7 +130,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "User Timing Level 2", + "url": "https://w3c.github.io/user-timing/#dom-performance-clearmarks" + }, + { + "name": "User Timing", + "url": "https://www.w3.org/TR/user-timing/#dom-performance-clearmarks" + } + ] } }, "clearMeasures": { @@ -140,7 +188,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "User Timing Level 2", + "url": "https://w3c.github.io/user-timing/#dom-performance-clearmeasures" + }, + { + "name": "User Timing", + "url": "https://www.w3.org/TR/user-timing/#dom-performance-clearmeasures" + } + ] } }, "clearResourceTimings": { @@ -209,7 +267,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#dom-performance-clearresourcetimings" + } + ] } }, "getEntries": { @@ -257,7 +321,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performance-getentries" + }, + { + "name": "Performance Timeline", + "url": "https://www.w3.org/TR/performance-timeline/#dom-performance-getentries" + } + ] } }, "getEntriesByName": { @@ -305,7 +379,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performance-getentriesbyname" + }, + { + "name": "Performance Timeline", + "url": "https://www.w3.org/TR/performance-timeline/#dom-performance-getentriesbyname" + } + ] } }, "getEntriesByType": { @@ -353,7 +437,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performance-getentriesbytype" + }, + { + "name": "Performance Timeline", + "url": "https://www.w3.org/TR/performance-timeline/#dom-performance-getentriesbytype" + } + ] } }, "mark": { @@ -401,7 +495,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "User Timing Level 2", + "url": "https://w3c.github.io/user-timing/#dom-performance-mark" + }, + { + "name": "User Timing", + "url": "https://www.w3.org/TR/user-timing/#dom-performance-mark" + } + ] } }, "measure": { @@ -449,7 +553,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "User Timing Level 2", + "url": "https://w3c.github.io/user-timing/#dom-performance-measure" + }, + { + "name": "User Timing", + "url": "https://www.w3.org/TR/user-timing/#dom-performance-measure" + } + ] } }, "memory": { @@ -601,7 +715,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Highres Time Level 2", + "url": "https://www.w3.org/TR/hr-time-2/#dom-performance-now" + }, + { + "name": "Highres Time", + "url": "https://www.w3.org/TR/hr-time-1/#dom-performance-now" + } + ] } }, "onresourcetimingbufferfull": { @@ -664,7 +788,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#dom-performance-onresourcetimingbufferfull" + } + ] } }, "setResourceTimingBufferSize": { @@ -733,7 +863,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#dom-performance-setresourcetimingbuffersize" + } + ] } }, "timeOrigin": { @@ -775,7 +911,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Highres Time Level 3", + "url": "https://w3c.github.io/hr-time/#dom-performance-timeorigin" + } + ] } }, "timing": { @@ -871,7 +1013,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Highres Time Level 2", + "url": "https://www.w3.org/TR/hr-time-2/#the-performance-interface" + } + ] } } } diff --git a/api/PerformanceEntry.json b/api/PerformanceEntry.json index b7f969f0092007..337611a39894f5 100644 --- a/api/PerformanceEntry.json +++ b/api/PerformanceEntry.json @@ -65,7 +65,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performanceentry" + }, + { + "name": "Performance Timeline", + "url": "https://www.w3.org/TR/performance-timeline/#dom-performanceentry" + } + ] }, "worker_support": { "__compat": { @@ -166,7 +176,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performanceentry-duration" + }, + { + "name": "Performance Timeline", + "url": "https://www.w3.org/TR/performance-timeline/#dom-performanceentry-duration" + } + ] } }, "entryType": { @@ -217,7 +237,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performanceentry-entrytype" + }, + { + "name": "Performance Timeline", + "url": "https://www.w3.org/TR/performance-timeline/#dom-performanceentry-entrytype" + } + ] } }, "name": { @@ -268,7 +298,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performanceentry-name" + }, + { + "name": "Performance Timeline", + "url": "https://www.w3.org/TR/performance-timeline/#dom-performanceentry-name" + } + ] } }, "startTime": { @@ -319,7 +359,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performanceentry-starttime" + }, + { + "name": "Performance Timeline", + "url": "https://www.w3.org/TR/performance-timeline/#dom-performanceentry-starttime" + } + ] } }, "toJSON": { @@ -370,7 +420,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performanceentry" + } + ] } } } diff --git a/api/PerformanceFrameTiming.json b/api/PerformanceFrameTiming.json index 949c34662f5775..244f41df8b0272 100644 --- a/api/PerformanceFrameTiming.json +++ b/api/PerformanceFrameTiming.json @@ -43,7 +43,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Frame Timing", + "url": "https://wicg.github.io/frame-timing/#performancereframetiming" + } + ] } } } diff --git a/api/PerformanceLongTaskTiming.json b/api/PerformanceLongTaskTiming.json index 6cc183e3562aeb..785874319f4594 100644 --- a/api/PerformanceLongTaskTiming.json +++ b/api/PerformanceLongTaskTiming.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Long Tasks", + "url": "https://w3c.github.io/longtasks/#sec-PerformanceLongTaskTiming" + } + ] }, "attribution": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Long Tasks", + "url": "https://w3c.github.io/longtasks/#dom-performanceentry-attribution" + } + ] } } } diff --git a/api/PerformanceMark.json b/api/PerformanceMark.json index 8af3176ae7dcee..f11f6076425fcf 100644 --- a/api/PerformanceMark.json +++ b/api/PerformanceMark.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "User Timing Level 2", + "url": "https://w3c.github.io/user-timing/#performancemark" + }, + { + "name": "User Timing", + "url": "https://www.w3.org/TR/user-timing/#performancemark" + } + ] } } } diff --git a/api/PerformanceMeasure.json b/api/PerformanceMeasure.json index 885038773c789a..3c933383a25334 100644 --- a/api/PerformanceMeasure.json +++ b/api/PerformanceMeasure.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "User Timing Level 2", + "url": "https://w3c.github.io/user-timing/#dom-performance-measure" + }, + { + "name": "User Timing", + "url": "https://www.w3.org/TR/user-timing/#performancemeasure" + } + ] } } } diff --git a/api/PerformanceNavigationTiming.json b/api/PerformanceNavigationTiming.json index 7cbaf258200af1..d16ec2b78b93b2 100644 --- a/api/PerformanceNavigationTiming.json +++ b/api/PerformanceNavigationTiming.json @@ -50,7 +50,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#sec-PerformanceNavigationTiming" + } + ] }, "domComplete": { "__compat": { @@ -100,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#widl-PerformanceNavigationTiming-domComplete" + } + ] } }, "domContentLoadedEventEnd": { @@ -151,7 +163,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#widl-PerformanceNavigationTiming-domContentLoadedEventEnd" + } + ] } }, "domContentLoadedEventStart": { @@ -202,7 +220,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#widl-PerformanceNavigationTiming-domContentLoadedEventStart" + } + ] } }, "domInteractive": { @@ -253,7 +277,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#widl-PerformanceNavigationTiming-domInteractive" + } + ] } }, "loadEventEnd": { @@ -304,7 +334,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#widl-PerformanceNavigationTiming-loadEventEnd" + } + ] } }, "loadEventStart": { @@ -355,7 +391,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#widl-PerformanceNavigationTiming-loadEventStart" + } + ] } }, "redirectCount": { @@ -406,7 +448,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#widl-PerformanceNavigationTiming-redirectCount" + } + ] } }, "type": { @@ -457,7 +505,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#widl-PerformanceNavigationTiming-type" + } + ] } }, "unloadEventEnd": { @@ -508,7 +562,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#widl-PerformanceNavigationTiming-unloadEventEnd" + } + ] } }, "unloadEventStart": { @@ -559,7 +619,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#widl-PerformanceNavigationTiming-unloadEventStart" + } + ] } }, "toJSON": { @@ -610,7 +676,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Navigation Timing Level 2", + "url": "https://w3c.github.io/navigation-timing/#serializer" + } + ] } } } diff --git a/api/PerformanceObserver.json b/api/PerformanceObserver.json index fb40bc7c9e185f..9cd200e0dc70ae 100644 --- a/api/PerformanceObserver.json +++ b/api/PerformanceObserver.json @@ -39,7 +39,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performanceobserver" + } + ] }, "worker_support": { "__compat": { @@ -123,7 +129,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#idl-def-performanceobservercallback" + } + ] } }, "disconnect": { @@ -165,7 +177,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performanceobserver-disconnect" + } + ] } }, "observe": { @@ -207,7 +225,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performanceobserver-observe" + } + ] } }, "takeRecords": { @@ -249,7 +273,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#dom-performanceobserver-takerecords" + } + ] } } } diff --git a/api/PerformanceObserverEntryList.json b/api/PerformanceObserverEntryList.json index 8797d15142be41..0db54144c89679 100644 --- a/api/PerformanceObserverEntryList.json +++ b/api/PerformanceObserverEntryList.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#idl-def-performanceobserverentrylist" + } + ] }, "getEntries": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#idl-def-performanceobserverentrylist" + } + ] } }, "getEntriesByType": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#idl-def-performanceobserverentrylist" + } + ] } }, "getEntriesByName": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Performance Timeline Level 2", + "url": "https://w3c.github.io/performance-timeline/#idl-def-performanceobserverentrylist" + } + ] } } } diff --git a/api/PerformancePaintTiming.json b/api/PerformancePaintTiming.json index 6a8488e614d868..63f67014835780 100644 --- a/api/PerformancePaintTiming.json +++ b/api/PerformancePaintTiming.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Paint Timing", + "url": "https://w3c.github.io/paint-timing/#sec-PerformancePaintTiming" + } + ] } } } diff --git a/api/PerformanceResourceTiming.json b/api/PerformanceResourceTiming.json index 0a8819241a0bb6..6e60c802d43912 100644 --- a/api/PerformanceResourceTiming.json +++ b/api/PerformanceResourceTiming.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#performanceresourcetiming" + } + ] }, "connectEnd": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-connectEnd" + } + ] } }, "connectStart": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-connectStart" + } + ] } }, "decodedBodySize": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-decodedBodySize" + } + ] } }, "domainLookupEnd": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-domainLookupEnd" + } + ] } }, "domainLookupStart": { @@ -302,7 +332,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-domainLookupStart" + } + ] } }, "encodedBodySize": { @@ -353,7 +389,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-encodedBodySize" + } + ] } }, "fetchStart": { @@ -404,7 +446,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-fetchStart" + } + ] } }, "initiatorType": { @@ -455,7 +503,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-initiatorType" + } + ] } }, "nextHopProtocol": { @@ -506,7 +560,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-nextHopProtocol" + } + ] } }, "redirectEnd": { @@ -557,7 +617,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-redirectEnd" + } + ] } }, "redirectStart": { @@ -608,7 +674,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-redirectStart" + } + ] } }, "requestStart": { @@ -659,7 +731,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-requestStart" + } + ] } }, "responseEnd": { @@ -710,7 +788,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-responseEnd" + } + ] } }, "responseStart": { @@ -761,7 +845,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-responseStart" + } + ] } }, "secureConnectionStart": { @@ -812,7 +902,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-secureConnectionStart" + } + ] } }, "serverTiming": { @@ -863,7 +959,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Server Timing", + "url": "https://w3c.github.io/server-timing/#-dfn-servertiming-dfn-attribute" + } + ] } }, "transferSize": { @@ -914,7 +1016,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-transferSize" + } + ] } }, "workerStart": { @@ -965,7 +1073,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#widl-PerformanceResourceTiming-workerStart" + } + ] } }, "toJSON": { @@ -1016,7 +1130,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing", + "url": "https://www.w3.org/TR/resource-timing-1/#serializer" + } + ] } }, "worker_support": { diff --git a/api/PerformanceServerTiming.json b/api/PerformanceServerTiming.json index 397a39c34848c9..3ad6c6c3383795 100644 --- a/api/PerformanceServerTiming.json +++ b/api/PerformanceServerTiming.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Server Timing", + "url": "https://w3c.github.io/server-timing/#the-dfn-performanceservertiming-dfn-interface" + } + ] }, "description": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Server Timing", + "url": "https://w3c.github.io/server-timing/#dom-performanceservertiming-description" + } + ] } }, "duration": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Server Timing", + "url": "https://w3c.github.io/server-timing/#dom-performanceservertiming-duration" + } + ] } }, "name": { @@ -200,7 +218,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Server Timing", + "url": "https://w3c.github.io/server-timing/#dom-performanceservertiming-name" + } + ] } }, "toJSON": { diff --git a/api/PeriodicWave.json b/api/PeriodicWave.json index 172f7c4a86006c..a2a5d1b0b2a8cb 100644 --- a/api/PeriodicWave.json +++ b/api/PeriodicWave.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#periodicwave" + } + ] }, "PeriodicWave": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-periodicwave-interface" + } + ] } } } diff --git a/api/PermissionStatus.json b/api/PermissionStatus.json index 7a065b629d153d..7dc0f229f04c3e 100644 --- a/api/PermissionStatus.json +++ b/api/PermissionStatus.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Permissions API", + "url": "https://w3c.github.io/permissions/#status-of-a-permission" + } + ] }, "onchange": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Permissions API", + "url": "https://w3c.github.io/permissions/#widl-PermissionStatus-onchange" + } + ] } }, "state": { @@ -170,7 +182,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Permissions API", + "url": "https://w3c.github.io/permissions/#widl-PermissionStatus-state" + } + ] } } } diff --git a/api/Permissions.json b/api/Permissions.json index a05001931dfef7..ba016f6dd4096d 100644 --- a/api/Permissions.json +++ b/api/Permissions.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Permissions API", + "url": "https://w3c.github.io/permissions/#permissions-interface" + } + ] }, "query": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Permissions API", + "url": "https://w3c.github.io/permissions/#dom-permissions-query" + } + ] } }, "request": { @@ -277,7 +289,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Permissions API", + "url": "https://w3c.github.io/permissions/#dom-permissions-revoke" + } + ] } }, "accelerometer_permission": { diff --git a/api/PhotoCapabilities.json b/api/PhotoCapabilities.json index 13d70012102b8a..de6ce2d1aa3022 100644 --- a/api/PhotoCapabilities.json +++ b/api/PhotoCapabilities.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#photocapabilities-section" + } + ] }, "fillLightMode": { "__compat": { @@ -92,7 +98,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-photocapabilities-filllightmode" + } + ] } }, "imageHeight": { @@ -140,7 +152,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-photocapabilities-imageheight" + } + ] } }, "imageWidth": { @@ -188,7 +206,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-photocapabilities-imagewidth" + } + ] } }, "redEyeReduction": { @@ -236,7 +260,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "MediaStream Image", + "url": "https://w3c.github.io/mediacapture-image/#dom-photocapabilities-redeyereduction" + } + ] } } } diff --git a/api/Plugin.json b/api/Plugin.json index 0eba532f4e4838..30a5f89e73ac0e 100644 --- a/api/Plugin.json +++ b/api/Plugin.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-plugin" + } + ] }, "description": { "__compat": { diff --git a/api/PluginArray.json b/api/PluginArray.json index 46e77de0e4659d..4cdb0d19e965f1 100644 --- a/api/PluginArray.json +++ b/api/PluginArray.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#pluginarray" + } + ] }, "item": { "__compat": { diff --git a/api/PointerEvent.json b/api/PointerEvent.json index ca1f5ec6db6910..370df6743dd973 100644 --- a/api/PointerEvent.json +++ b/api/PointerEvent.json @@ -80,7 +80,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#pointerevent-interface" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#pointerevent-interface" + } + ] }, "PointerEvent": { "__compat": { @@ -163,7 +173,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#pointerevent-interface" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#pointerevent-interface" + } + ] } }, "pointerId": { @@ -238,7 +258,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-PointerEvent-pointerId" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-PointerEvent-pointerId" + } + ] } }, "width": { @@ -320,7 +350,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-PointerEvent-width" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-PointerEvent-width" + } + ] } }, "height": { @@ -402,7 +442,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-PointerEvent-height" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-PointerEvent-height" + } + ] } }, "pressure": { @@ -484,7 +534,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-PointerEvent-pressure" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-PointerEvent-pressure" + } + ] } }, "tangentialPressure": { @@ -559,7 +619,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#dom-pointerevent-tangentialpressure" + } + ] } }, "tiltX": { @@ -634,7 +700,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-PointerEvent-tiltX" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-PointerEvent-tiltX" + } + ] } }, "tiltY": { @@ -709,7 +785,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-PointerEvent-tiltY" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-PointerEvent-tiltY" + } + ] } }, "twist": { @@ -784,7 +870,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#dom-pointerevent-twist" + } + ] } }, "pointerType": { @@ -866,7 +958,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-PointerEvent-pointerType" + }, + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-PointerEvent-pointerType" + }, + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#extensions-to-the-mouseevent-interface" + } + ] } }, "isPrimary": { @@ -941,7 +1047,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#widl-PointerEvent-isPrimary" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#widl-PointerEvent-isPrimary" + } + ] } }, "getCoalescedEvents": { @@ -992,7 +1108,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Pointer Events 2 Ext", + "url": "https://w3c.github.io/pointerevents/extension.html#dom-pointerevent-getcoalescedevents" + } + ] } } } diff --git a/api/Position.json b/api/Position.json index b058b8934ae679..14dde714f81ad6 100644 --- a/api/Position.json +++ b/api/Position.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#position" + } + ] }, "secure_context_required": { "__compat": { @@ -140,7 +146,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#timestamp" + } + ] } }, "coords": { @@ -188,7 +200,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#coords" + } + ] } } } diff --git a/api/PositionError.json b/api/PositionError.json index 466506584f76cb..34227e9e6f6ed4 100644 --- a/api/PositionError.json +++ b/api/PositionError.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#position_error_interface" + } + ] }, "secure_context_required": { "__compat": { @@ -140,7 +146,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#code" + } + ] } }, "message": { @@ -188,7 +200,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#message" + } + ] } } } diff --git a/api/PositionOptions.json b/api/PositionOptions.json index dda3acb227e0db..ec40c271f3128f 100644 --- a/api/PositionOptions.json +++ b/api/PositionOptions.json @@ -60,7 +60,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#positionoptions" + } + ] }, "secure_context_required": { "__compat": { @@ -174,7 +180,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#enablehighaccuracy" + } + ] } }, "timeout": { @@ -237,7 +249,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#timeout" + } + ] } }, "maximumAge": { @@ -300,7 +318,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Geolocation", + "url": "https://dev.w3.org/geo/api/spec-source.html#maximumage" + } + ] } } } diff --git a/api/Presentation.json b/api/Presentation.json index 830112b3af5a32..bbbe0bb06ccf54 100644 --- a/api/Presentation.json +++ b/api/Presentation.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#interface-presentation" + } + ] }, "defaultRequest": { "__compat": { @@ -191,7 +197,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#dom-presentation-receiver" + } + ] } } } diff --git a/api/PresentationAvailability.json b/api/PresentationAvailability.json index de64af333532eb..aba6fdd98ce3f6 100644 --- a/api/PresentationAvailability.json +++ b/api/PresentationAvailability.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#interface-presentationavailability" + } + ] }, "onchange": { "__compat": { diff --git a/api/PresentationConnection.json b/api/PresentationConnection.json index 9ac88b61505ab4..54e994f9bf0918 100644 --- a/api/PresentationConnection.json +++ b/api/PresentationConnection.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#interface-presentationconnection" + } + ] }, "binaryType": { "__compat": { @@ -581,7 +587,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#dom-presentationconnection-send" + } + ] } }, "state": { @@ -776,7 +788,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#dom-presentationconnection-url" + } + ] } } } diff --git a/api/PresentationConnectionAvailableEvent.json b/api/PresentationConnectionAvailableEvent.json index 130a255d2ab919..3f5449da8652ae 100644 --- a/api/PresentationConnectionAvailableEvent.json +++ b/api/PresentationConnectionAvailableEvent.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#interface-presentationconnectionavailableevent" + } + ] }, "PresentationConnectionAvailableEvent": { "__compat": { @@ -127,7 +133,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#interface-presentationconnectionavailableevent" + } + ] } }, "connection": { diff --git a/api/PresentationConnectionCloseEvent.json b/api/PresentationConnectionCloseEvent.json index 4575926889c8a3..36fb871bbb9753 100644 --- a/api/PresentationConnectionCloseEvent.json +++ b/api/PresentationConnectionCloseEvent.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#interface-presentationconnectionclosedevent" + } + ] }, "PresentationConnectionCloseEvent": { "__compat": { diff --git a/api/PresentationConnectionList.json b/api/PresentationConnectionList.json index 6d5cc1d93aa4d9..490b568062a487 100644 --- a/api/PresentationConnectionList.json +++ b/api/PresentationConnectionList.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#interface-presentationconnectionlist" + } + ] }, "connections": { "__compat": { diff --git a/api/PresentationReceiver.json b/api/PresentationReceiver.json index 9eaf2f8e97c1f7..b7cb4f543de5ff 100644 --- a/api/PresentationReceiver.json +++ b/api/PresentationReceiver.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#interface-presentationreceiver" + } + ] }, "connectionList": { "__compat": { diff --git a/api/PresentationRequest.json b/api/PresentationRequest.json index 50c2099403aa94..cef78dfec33d51 100644 --- a/api/PresentationRequest.json +++ b/api/PresentationRequest.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#interface-presentationrequest" + } + ] }, "secure_context_required": { "__compat": { @@ -178,7 +184,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#constructing-a-presentationrequest" + } + ] } }, "getAvailability": { @@ -438,7 +450,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#dom-presentationrequest-start" + } + ] } }, "startWithDevice": { diff --git a/api/ProgressEvent.json b/api/ProgressEvent.json index 102cf2cfbfda48..1959d78bda436f 100644 --- a/api/ProgressEvent.json +++ b/api/ProgressEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#interface-progressevent" + } + ] }, "ProgressEvent": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#interface-progresseventt" + } + ] } }, "lengthComputable": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-progressevent-lengthcomputable" + } + ] } }, "loaded": { @@ -201,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-progressevent-loaded" + } + ] } }, "total": { @@ -252,7 +276,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-progressevent-total" + } + ] } }, "initProgressEvent": { diff --git a/api/PromiseRejectionEvent.json b/api/PromiseRejectionEvent.json index 03b678d5ea3cfa..a12f1bf2c490ba 100644 --- a/api/PromiseRejectionEvent.json +++ b/api/PromiseRejectionEvent.json @@ -64,7 +64,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#promiserejectionevent" + } + ] }, "PromiseRejectionEvent": { "__compat": { @@ -130,7 +136,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#the-promiserejectionevent-interface" + } + ] } }, "promise": { @@ -197,7 +209,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-promiserejectionevent-promise" + } + ] } }, "reason": { @@ -264,7 +282,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-promiserejectionevent-reason" + } + ] } } } diff --git a/api/PushEvent.json b/api/PushEvent.json index 38189b2cac6bad..42aebcfc8b0964 100644 --- a/api/PushEvent.json +++ b/api/PushEvent.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#the-push-event" + } + ] }, "PushEvent": { "__compat": { @@ -141,7 +147,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#the-push-event" + } + ] } }, "data": { @@ -213,7 +225,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushEvent-data" + } + ] } } } diff --git a/api/PushManager.json b/api/PushManager.json index 899435e707fe3e..fd1635c0abffd5 100644 --- a/api/PushManager.json +++ b/api/PushManager.json @@ -63,7 +63,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#pushmanager-interface" + } + ] }, "supportedContentEncodings": { "__compat": { @@ -128,7 +134,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#dom-pushmanager-supportedcontentencodings" + } + ] } }, "getSubscription": { @@ -194,7 +206,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushManager-getSubscription-Promise-PushSubscription" + } + ] } }, "permissionState": { @@ -260,7 +278,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushManager-permissionState-Promise-PushPermissionState--PushSubscriptionOptions-options" + } + ] } }, "subscribe": { @@ -329,7 +353,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushManager-subscribe-Promise-PushSubscription--PushSubscriptionOptions-options" + } + ] } }, "hasPermission": { diff --git a/api/PushMessageData.json b/api/PushMessageData.json index 8d0777f1ed2c7c..743113413b35ff 100644 --- a/api/PushMessageData.json +++ b/api/PushMessageData.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#pushmessagedata-interface" + } + ] }, "arrayBuffer": { "__compat": { @@ -100,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushMessageData-arrayBuffer-ArrayBuffer" + } + ] } }, "blob": { @@ -152,7 +164,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushMessageData-blob-Blob" + } + ] } }, "json": { @@ -204,7 +222,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushMessageData-json-JSON" + } + ] } }, "text": { @@ -256,7 +280,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushMessageData-text-USVString" + } + ] } } } diff --git a/api/PushSubscription.json b/api/PushSubscription.json index 718a5838452b97..90532bfd8b5783 100644 --- a/api/PushSubscription.json +++ b/api/PushSubscription.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#pushsubscription-interface" + } + ] }, "endpoint": { "__compat": { @@ -100,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushSubscription-endpoint" + } + ] } }, "expirationTime": { @@ -151,7 +163,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#dom-pushsubscription-expirationtime" + } + ] } }, "options": { @@ -203,7 +221,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushSubscription-options" + } + ] } }, "subscriptionId": { @@ -358,7 +382,13 @@ "experimental": true, "standard_track": true, "deprecated": true - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#pushsubscription-interface" + } + ] } }, "unsubscribe": { @@ -409,7 +439,13 @@ "experimental": true, "standard_track": true, "deprecated": true - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-PushSubscription-unsubscribe-Promise-boolean" + } + ] } } } diff --git a/api/RTCAnswerOptions.json b/api/RTCAnswerOptions.json index 2da2078e493cb3..5556bd59610e92 100644 --- a/api/RTCAnswerOptions.json +++ b/api/RTCAnswerOptions.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcansweroptions " + } + ] } } } diff --git a/api/RTCConfiguration.json b/api/RTCConfiguration.json index e37dc57381b3fb..f7e155181b5137 100644 --- a/api/RTCConfiguration.json +++ b/api/RTCConfiguration.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcconfiguration" + } + ] }, "bundlePolicy": { "__compat": { diff --git a/api/RTCDTMFSender.json b/api/RTCDTMFSender.json index 5fa1631aa7bc4b..9fbfb20af65765 100644 --- a/api/RTCDTMFSender.json +++ b/api/RTCDTMFSender.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#rtcdtmfsender" + } + ] }, "toneBuffer": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdtmfsender-toneBuffer" + } + ] } }, "ontonechange": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdtmfsender-ontonechange" + } + ] } }, "insertDTMF": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdtmfsender-insertdtmf" + } + ] } }, "canInsertDTMF": { diff --git a/api/RTCDTMFToneChangeEvent.json b/api/RTCDTMFToneChangeEvent.json index 2fbcd1efd02876..ae0c83f8f0331d 100644 --- a/api/RTCDTMFToneChangeEvent.json +++ b/api/RTCDTMFToneChangeEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#event-RTCDTMFSender-tonechange" + } + ] }, "tone": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdtmftonechangeevent-tone" + } + ] } }, "RTCDTMFToneChangeEvent": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdtmftonechangeevent" + } + ] } } } diff --git a/api/RTCDataChannel.json b/api/RTCDataChannel.json index 6fa3138aa15bb4..b6d89c7a6e2f2c 100644 --- a/api/RTCDataChannel.json +++ b/api/RTCDataChannel.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#idl-def-RTCDataChannel" + } + ] }, "binaryType": { "__compat": { @@ -112,7 +118,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-datachannel-binarytype" + } + ] } }, "bufferedAmount": { @@ -163,7 +175,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-datachannel-bufferedamount" + } + ] } }, "bufferedAmountLowThreshold": { @@ -214,7 +232,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-datachannel-bufferedamountlowthreshold" + } + ] } }, "close": { @@ -265,7 +289,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-close" + } + ] } }, "id": { @@ -316,7 +346,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-datachannel-id" + } + ] } }, "label": { @@ -367,7 +403,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-label" + } + ] } }, "maxPacketLifeTime": { @@ -418,7 +460,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-maxpacketlifetime" + } + ] } }, "maxRetransmits": { @@ -469,7 +517,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-maxretransmits" + } + ] } }, "negotiated": { @@ -520,7 +574,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-negotiated" + } + ] } }, "ordered": { @@ -571,7 +631,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-ordered" + } + ] } }, "protocol": { @@ -622,7 +688,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-datachannel-protocol" + } + ] } }, "onbufferedamountlow": { @@ -688,7 +760,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-onbufferedamountlow" + } + ] } }, "onclose": { @@ -739,7 +817,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-onclose" + } + ] } }, "onerror": { @@ -790,7 +874,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-onerror" + } + ] } }, "onmessage": { @@ -841,7 +931,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-onmessage" + } + ] } }, "onopen": { @@ -892,7 +988,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-onopen" + } + ] } }, "priority": { @@ -994,7 +1096,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-datachannel-readystate" + } + ] } }, "reliable": { @@ -1147,7 +1255,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel-send" + } + ] } }, "stream": { diff --git a/api/RTCDataChannelEvent.json b/api/RTCDataChannelEvent.json index 72fcf3f55ef39a..9f8e5d4a581037 100644 --- a/api/RTCDataChannelEvent.json +++ b/api/RTCDataChannelEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#idl-def-RTCDataChannelEvent" + } + ] }, "RTCDataChannelEvent": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-RTCDataChannelEvent" + } + ] } }, "channel": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-RTCDataChannelEvent-channel" + } + ] } } } diff --git a/api/RTCIceCandidate.json b/api/RTCIceCandidate.json index 8d3081e3d11bc1..2e76d137cb9125 100644 --- a/api/RTCIceCandidate.json +++ b/api/RTCIceCandidate.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#rtcicecandidate-interface" + } + ] }, "RTCIceCandidate": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dfn-rtcicecandidate" + } + ] } }, "candidate": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-candidate" + } + ] } }, "foundation": { @@ -201,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-foundation" + } + ] } }, "ip": { @@ -252,7 +276,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-ip" + } + ] } }, "port": { @@ -303,7 +333,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-port" + } + ] } }, "priority": { @@ -354,7 +390,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-priority" + } + ] } }, "protocol": { @@ -405,7 +447,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-protocol" + } + ] } }, "relatedAddress": { @@ -456,7 +504,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-relatedAddress" + } + ] } }, "relatedPort": { @@ -507,7 +561,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-relatedPort" + } + ] } }, "sdpMid": { @@ -558,7 +618,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-sdpmid" + } + ] } }, "sdpMLineIndex": { @@ -609,7 +675,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-sdpmlineindex" + } + ] } }, "tcpType": { @@ -660,7 +732,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-tcptype" + } + ] } }, "type": { @@ -711,7 +789,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-type" + } + ] } }, "component": { @@ -762,7 +846,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-component" + } + ] } }, "usernameFragment": { @@ -813,7 +903,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-usernamefragment" + } + ] } }, "toJSON": { @@ -864,7 +960,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-tojson" + } + ] } } } diff --git a/api/RTCIceCandidateInit.json b/api/RTCIceCandidateInit.json index 875e2d54bdde3e..7ff62fc544d5fb 100644 --- a/api/RTCIceCandidateInit.json +++ b/api/RTCIceCandidateInit.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidateinit" + } + ] }, "candidate": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidateinit-candidate" + } + ] } }, "sdpMid": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidateinit-sdpmid" + } + ] } }, "sdpMLineIndex": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidateinit-sdpmlineindex" + } + ] } }, "usernameFragment": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicecandidateinit-usernamefragment" + } + ] } } } diff --git a/api/RTCIceComponent.json b/api/RTCIceComponent.json index da214420bdbe47..2e635c732f80de 100644 --- a/api/RTCIceComponent.json +++ b/api/RTCIceComponent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#rtcicecomponent" + } + ] } } } diff --git a/api/RTCIceServer.json b/api/RTCIceServer.json index e62993cb389a6e..ba4f0f37669490 100644 --- a/api/RTCIceServer.json +++ b/api/RTCIceServer.json @@ -98,7 +98,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCIceServer-credential" + } + ] } }, "credentialType": { @@ -149,7 +155,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCIceServer-credential" + } + ] } }, "url": { @@ -251,7 +263,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#http://w3c.github.io/webrtc-pc/#widl-RTCIceServer-urls" + } + ] } }, "username": { @@ -302,7 +320,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCIceServer-username" + } + ] } } } diff --git a/api/RTCIceTransport.json b/api/RTCIceTransport.json index 43887dd9d5b747..c192b258a98588 100644 --- a/api/RTCIceTransport.json +++ b/api/RTCIceTransport.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport" + } + ] }, "component": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-component" + } + ] } }, "gatheringState": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-gatheringstate" + } + ] } }, "ongatheringstatechange": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-ongatheringstatechange" + } + ] } }, "onselectedcandidatepairchange": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-onselectedcandidatepairchange" + } + ] } }, "onstatechange": { @@ -302,7 +332,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-onstatechange" + } + ] } }, "role": { @@ -353,7 +389,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-role" + } + ] } }, "state": { @@ -404,7 +446,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#rtcicetransportstate" + } + ] } }, "getLocalCandidates": { @@ -455,7 +503,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-getlocalcandidates" + } + ] } }, "getLocalParameters": { @@ -506,7 +560,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-getlocalparameters" + } + ] } }, "getRemoteCandidates": { @@ -557,7 +617,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-getremotecandidates" + } + ] } }, "getRemoteParameters": { @@ -608,7 +674,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-getremoteparameters" + } + ] } }, "getSelectedCandidatePair": { @@ -660,7 +732,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-getselectedcandidatepair" + } + ] } } } diff --git a/api/RTCIdentityErrorEvent.json b/api/RTCIdentityErrorEvent.json index 71f9f778cfa655..3cd01b1b6d9043 100644 --- a/api/RTCIdentityErrorEvent.json +++ b/api/RTCIdentityErrorEvent.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#idl-def-RTCIdentityErrorEvent" + } + ] }, "idp": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCIdentityErrorEvent-idp" + } + ] } }, "loginUrl": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCIdentityErrorEvent-loginUrl" + } + ] } }, "protocol": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCIdentityErrorEvent-protocol" + } + ] } } } diff --git a/api/RTCIdentityEvent.json b/api/RTCIdentityEvent.json index 4f642ccc3378c5..9a1eac2eb966f0 100644 --- a/api/RTCIdentityEvent.json +++ b/api/RTCIdentityEvent.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#idl-def-RTCIdentityEvent" + } + ] }, "assertion": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCIdentityEvent-assertion" + } + ] } } } diff --git a/api/RTCOfferAnswerOptions.json b/api/RTCOfferAnswerOptions.json index 60c45793a13bb1..bd40f849c3d3a7 100644 --- a/api/RTCOfferAnswerOptions.json +++ b/api/RTCOfferAnswerOptions.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcofferansweroptions " + } + ] }, "voiceActivityDetection": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcofferansweroptions-voiceactivitydetection " + } + ] } } } diff --git a/api/RTCOfferOptions.json b/api/RTCOfferOptions.json index b42038b63a0f5d..042eb8dd576b77 100644 --- a/api/RTCOfferOptions.json +++ b/api/RTCOfferOptions.json @@ -60,7 +60,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcofferoptions " + } + ] }, "iceRestart": { "__compat": { @@ -110,7 +116,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcofferoptions-icerestart " + } + ] } } } diff --git a/api/RTCPeerConnection.json b/api/RTCPeerConnection.json index 97dd04377c81e0..e0a5c4f8b27ad3 100644 --- a/api/RTCPeerConnection.json +++ b/api/RTCPeerConnection.json @@ -97,7 +97,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#interface-definition" + } + ] }, "RTCPeerConnection": { "__compat": { @@ -171,7 +177,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-ctor-RTCPeerConnection--RTCConfiguration-configuration" + } + ] } }, "canTrickleIceCandidates": { @@ -222,7 +234,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-canTrickleIceCandidates" + } + ] } }, "connectionState": { @@ -273,7 +291,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-connectionState" + } + ] } }, "currentLocalDescription": { @@ -338,7 +362,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-currentLocalDescription" + } + ] } }, "currentRemoteDescription": { @@ -389,7 +419,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-currentRemoteDescription" + } + ] } }, "defaultIceServers": { @@ -454,7 +490,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-defaultIceServers" + } + ] } }, "iceConnectionState": { @@ -521,7 +563,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-iceConnectionState" + } + ] } }, "iceGatheringState": { @@ -586,7 +634,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-iceGatheringState" + } + ] } }, "localDescription": { @@ -651,7 +705,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-localDescription" + } + ] } }, "peerIdentity": { @@ -716,7 +776,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-peerIdentity" + } + ] } }, "pendingLocalDescription": { @@ -781,7 +847,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-pendingLocalDescription" + } + ] } }, "pendingRemoteDescription": { @@ -846,7 +918,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-pendingRemoteDescription" + } + ] } }, "remoteDescription": { @@ -913,7 +991,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-remoteDescription" + } + ] } }, "sctp": { @@ -978,7 +1062,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-sctp" + } + ] } }, "signalingState": { @@ -1043,7 +1133,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-signalingState" + } + ] } }, "onaddstream": { @@ -1159,7 +1255,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-onconnectionstatechange" + } + ] } }, "ondatachannel": { @@ -1224,7 +1326,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-ondatachannel" + } + ] } }, "onicecandidate": { @@ -1289,7 +1397,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-onicecandidate" + } + ] } }, "oniceconnectionstatechange": { @@ -1354,7 +1468,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-oniceconnectionstatechange" + } + ] } }, "onicegatheringstatechange": { @@ -1419,7 +1539,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-onicegatheringstatechange" + } + ] } }, "onidentityresult": { @@ -1484,7 +1610,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-onidentityresult" + } + ] } }, "onidpassertionerror": { @@ -1549,7 +1681,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-onidpassertionerror" + } + ] } }, "onidpvalidationerror": { @@ -1614,7 +1752,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-onidpvalidationerror" + } + ] } }, "onnegotiationneeded": { @@ -1679,7 +1823,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-onnegotiationneeded" + } + ] } }, "onpeeridentity": { @@ -1744,7 +1894,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-onpeeridentity" + } + ] } }, "onremovestream": { @@ -1876,7 +2032,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-onsignalingstatechange" + } + ] } }, "ontrack": { @@ -1941,7 +2103,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-ontrack" + } + ] } }, "addIceCandidate": { @@ -2038,7 +2206,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-addIceCandidate-Promise-void--RTCIceCandidateInit-RTCIceCandidate-candidate" + }, + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-addIceCandidate-void-RTCIceCandidateInit-RTCIceCandidate-candidate-VoidFunction-successCallback-RTCPeerConnectionErrorCallback-failureCallback" + } + ] } }, "addStream": { @@ -2154,7 +2332,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-addtrack" + } + ] } }, "addTransceiver": { @@ -2205,7 +2389,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-addtransceiver" + } + ] } }, "createAnswer": { @@ -2302,7 +2492,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-createanswer" + } + ] } }, "createDataChannel": { @@ -2367,7 +2563,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-createDataChannel-RTCDataChannel-DOMString-label-RTCDataChannelInit-dataChannelDict" + } + ] } }, "createOffer": { @@ -2464,7 +2666,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-createoffer" + } + ] } }, "generateCertificate": { @@ -2529,7 +2737,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-generateCertificate-Promise-RTCCertificate--AlgorithmIdentifier-keygenAlgorithm" + } + ] } }, "getConfiguration": { @@ -2594,7 +2808,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-getConfiguration-RTCConfiguration" + } + ] } }, "getIdentityAssertion": { @@ -2659,7 +2879,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-getIdentityAssertion-void" + } + ] } }, "getLocalStreams": { @@ -2724,7 +2950,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-getLocalStreams-sequence-MediaS" + } + ] } }, "getReceivers": { @@ -2775,7 +3007,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-getsenders" + } + ] } }, "getRemoteStreams": { @@ -2840,7 +3078,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-getRemoteStreams-sequence-MediaS" + } + ] } }, "getSenders": { @@ -2891,7 +3135,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-getsenders" + } + ] } }, "getStreamById": { @@ -2956,7 +3206,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-getStreamById-MediaStream-DOMString-streamId" + } + ] } }, "removeStream": { @@ -3021,7 +3277,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-removeStream-void-MediaStream-stream" + } + ] } }, "removeTrack": { @@ -3072,7 +3334,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-removetrack" + } + ] } }, "setConfiguration": { @@ -3137,7 +3405,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-setConfiguration-void-RTCConfiguration-configuration" + } + ] } }, "setIdentityProvider": { @@ -3202,7 +3476,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-setIdentityProvider-void-DOMString-provider-DOMString-protocol-DOMString-username" + } + ] } }, "setLocalDescription": { @@ -3299,7 +3579,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-setLocalDescription-void-RTCSessionDescription-description-VoidFunction-successCallback-RTCPeerConnectionErrorCallback-failureCallback" + }, + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-setLocalDescription-Promise-void--RTCSessionDescriptionInit-description" + } + ] } }, "setRemoteDescription": { @@ -3364,7 +3654,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-setRemoteDescription-void-RTCSessionDescription-description-VoidFunction-successCallback-RTCPeerConnectionErrorCallback-failureCallback" + }, + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-setRemoteDescription-Promise-void--RTCSessionDescriptionInit-description" + } + ] } }, "createDTMFSender": { @@ -3480,7 +3780,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-onicecandidateerror" + } + ] } }, "close": { @@ -3531,7 +3837,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnection-close-void" + } + ] } }, "getDefaultIceServers": { diff --git a/api/RTCPeerConnectionIceEvent.json b/api/RTCPeerConnectionIceEvent.json index 770b8e86cb1686..13650b6e6ed8ed 100644 --- a/api/RTCPeerConnectionIceEvent.json +++ b/api/RTCPeerConnectionIceEvent.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#idl-def-RTCPeerConnectionIceEvent" + } + ] }, "candidate": { "__compat": { @@ -119,7 +125,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCPeerConnectionIceEvent-canndidate" + } + ] } }, "RTCPeerConnectionIceEvent": { @@ -171,7 +183,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-ctor-RTCPeerConnectionIceErrorEvent--DOMString-type-RTCPeerConnectionIceErrorEventInit-eventInitDict" + } + ] } }, "url": { diff --git a/api/RTCRtpContributingSource.json b/api/RTCRtpContributingSource.json index d370b2ae57024d..4f9ba4264ba139 100644 --- a/api/RTCRtpContributingSource.json +++ b/api/RTCRtpContributingSource.json @@ -62,7 +62,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpcontributingsource" + } + ] }, "timestamp": { "__compat": { @@ -132,7 +138,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpsynchronizationsource-timestamp" + } + ] } }, "source": { @@ -197,7 +209,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpcontributingsource-source" + } + ] } }, "audioLevel": { @@ -262,7 +280,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpcontributingsource-audiolevel" + } + ] } } } diff --git a/api/RTCRtpReceiver.json b/api/RTCRtpReceiver.json index e0d5c76cbb9e46..5a262169fa39f5 100644 --- a/api/RTCRtpReceiver.json +++ b/api/RTCRtpReceiver.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#rtcrtpreceiver-interface" + } + ] }, "track": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpreceiver-track" + } + ] } }, "transport": { @@ -360,7 +372,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpreceiver-getcontributingsources" + } + ] } }, "getSynchronizationSources": { @@ -418,7 +436,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpreceiver-getsynchronizationsources" + } + ] } }, "getStats": { @@ -469,7 +493,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpreceiver-getstats()" + } + ] } } } diff --git a/api/RTCRtpSender.json b/api/RTCRtpSender.json index cff35cfc6216c3..e5a5fdeeaed5ee 100644 --- a/api/RTCRtpSender.json +++ b/api/RTCRtpSender.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#rtcrtpsender-interface" + } + ] }, "dtmf": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-dtmf" + } + ] } }, "getStats": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-getstats()" + } + ] } }, "rtcpTransport": { @@ -251,7 +269,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-track" + } + ] } }, "transport": { @@ -404,7 +428,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-getparameters" + } + ] } }, "replaceTrack": { @@ -455,7 +485,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-replacetrack" + } + ] } }, "setParameters": { @@ -506,7 +542,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-setparameters" + } + ] } } } diff --git a/api/RTCRtpStreamStats.json b/api/RTCRtpStreamStats.json index 6a3b11355d36cb..45e8813e8df6db 100644 --- a/api/RTCRtpStreamStats.json +++ b/api/RTCRtpStreamStats.json @@ -60,7 +60,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC Statistics Identifiers", + "url": "https://w3c.github.io/webrtc-stats/#streamstats-dict*" + } + ] }, "codecId": { "__compat": { @@ -110,7 +116,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC Statistics Identifiers", + "url": "https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-kind" + } + ] } }, "firCount": { @@ -161,7 +173,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC Statistics Identifiers", + "url": "https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-fircount" + } + ] } }, "isRemote": { @@ -265,7 +283,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC Statistics Identifiers", + "url": "https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-kind" + } + ] } }, "mediaTrackId": { @@ -418,7 +442,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC Statistics Identifiers", + "url": "https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-nackcount" + } + ] } }, "pliCount": { @@ -469,7 +499,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC Statistics Identifiers", + "url": "https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-plicount" + } + ] } }, "qpSum": { @@ -520,7 +556,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC Statistics Identifiers", + "url": "https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-qpsum" + } + ] } }, "remoteId": { @@ -622,7 +664,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC Statistics Identifiers", + "url": "https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-slicount" + } + ] } }, "ssrc": { @@ -673,7 +721,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC Statistics Identifiers", + "url": "https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-ssrc" + } + ] } }, "transportId": { @@ -724,7 +778,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC Statistics Identifiers", + "url": "https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-transportid" + } + ] } } } diff --git a/api/RTCRtpSynchronizationSource.json b/api/RTCRtpSynchronizationSource.json index 9a96344c509998..9509bb304a69f7 100644 --- a/api/RTCRtpSynchronizationSource.json +++ b/api/RTCRtpSynchronizationSource.json @@ -62,7 +62,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpsynchronizationsource" + } + ] }, "voiceActivityFlag": { "__compat": { @@ -126,7 +132,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtpsynchronizationsource-voiceactivityflag" + } + ] } } } diff --git a/api/RTCRtpTransceiver.json b/api/RTCRtpTransceiver.json index 1c30e20e935d4e..94d0e585360f8a 100644 --- a/api/RTCRtpTransceiver.json +++ b/api/RTCRtpTransceiver.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#rtcrtptransceiver-interface" + } + ] }, "currentDirection": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-currentdirection" + } + ] } }, "direction": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-direction" + } + ] } }, "mid": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-mid" + } + ] } }, "receiver": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-receiver" + } + ] } }, "sender": { @@ -302,7 +332,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-sender" + } + ] } }, "stopped": { @@ -353,7 +389,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-stopped" + } + ] } }, "setCodecPreferences": { @@ -404,7 +446,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-setcodecpreferences" + } + ] } }, "stop": { @@ -455,7 +503,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-stop" + } + ] } } } diff --git a/api/RTCRtpTransceiverDirection.json b/api/RTCRtpTransceiverDirection.json index 7b5a29758065f8..2d5dedc3d8e568 100644 --- a/api/RTCRtpTransceiverDirection.json +++ b/api/RTCRtpTransceiverDirection.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiverdirection" + } + ] } } } diff --git a/api/RTCRtpTransceiverInit.json b/api/RTCRtpTransceiverInit.json index 1aeee4d213f7da..f173bd660d4aa2 100644 --- a/api/RTCRtpTransceiverInit.json +++ b/api/RTCRtpTransceiverInit.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiverinit" + } + ] }, "direction": { "__compat": { diff --git a/api/RTCSctpTransport.json b/api/RTCSctpTransport.json index b60b32b9c5ebf0..017d7a04400742 100644 --- a/api/RTCSctpTransport.json +++ b/api/RTCSctpTransport.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#rtcsctptransport-interface" + } + ] }, "maxMessageSize": { "__compat": { diff --git a/api/RTCSessionDescription.json b/api/RTCSessionDescription.json index 723dba5af9c210..cdd8d8a92ba48b 100644 --- a/api/RTCSessionDescription.json +++ b/api/RTCSessionDescription.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#rtcsessiondescription-class" + } + ] }, "type": { "__compat": { @@ -100,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCSessionDescription-type" + } + ] } }, "sdp": { @@ -152,7 +164,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#widl-RTCSessionDescription-sdp" + } + ] } }, "RTCSessionDescription": { @@ -257,7 +275,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtcsessiondescription-tojson" + } + ] } } } diff --git a/api/RTCStatsReport.json b/api/RTCStatsReport.json index 09f8b084c7e3fc..7e7a2095836f75 100644 --- a/api/RTCStatsReport.json +++ b/api/RTCStatsReport.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#rtcstatsreport-object" + } + ] } } } diff --git a/api/RTCTrackEvent.json b/api/RTCTrackEvent.json index 8e04971592c942..4a445402791069 100644 --- a/api/RTCTrackEvent.json +++ b/api/RTCTrackEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtctrackevent" + } + ] }, "receiver": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtctrackevent-receiver" + } + ] } }, "streams": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtctrackevent-streams" + } + ] } }, "track": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtctrackevent-track" + } + ] } }, "transceiver": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtctrackevent-transceiver" + } + ] } } } diff --git a/api/RTCTrackEventInit.json b/api/RTCTrackEventInit.json index 2827d0710b3f86..2ea0f826ad1f8d 100644 --- a/api/RTCTrackEventInit.json +++ b/api/RTCTrackEventInit.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtctrackeventinit" + } + ] }, "receiver": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtctrackeventinit-receiver" + } + ] } }, "streams": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtctrackeventinit-streams" + } + ] } }, "track": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtctrackeventinit-track" + } + ] } }, "transceiver": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebRTC 1.0", + "url": "https://w3c.github.io/webrtc-pc/#dom-rtctrackeventinit-transceiver" + } + ] } } } diff --git a/api/RadioNodeList.json b/api/RadioNodeList.json index c7d184a91a8232..4306f456971841 100644 --- a/api/RadioNodeList.json +++ b/api/RadioNodeList.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#radionodelist" + } + ] }, "value": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-radionodelist-value" + } + ] } } } diff --git a/api/Range.json b/api/Range.json index b4cf5cd5ed150a..1f77f26648911d 100644 --- a/api/Range.json +++ b/api/Range.json @@ -47,7 +47,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-range" + }, + { + "name": "DOM Parsing", + "url": "https://w3c.github.io/DOM-Parsing/#extensions-to-the-range-interface" + }, + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#extensions-to-the-range-interface" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-Interface" + } + ] }, "Range": { "__compat": { @@ -95,7 +113,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range" + } + ] } }, "cloneContents": { @@ -143,7 +167,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-clonecontents" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-cloneContents" + } + ] } }, "cloneRange": { @@ -191,7 +225,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-clonerange" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-clone" + } + ] } }, "collapse": { @@ -239,7 +283,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-collapse" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-collapse" + } + ] }, "toStart_parameter_optional": { "__compat": { @@ -336,7 +390,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-collapsed" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-attr-collapsed" + } + ] } }, "commonAncestorContainer": { @@ -384,7 +448,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-commonancestorcontainer" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-attr-commonParent" + } + ] } }, "compareBoundaryPoints": { @@ -432,7 +506,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-compareboundarypoints" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-compareBoundaryPoints" + } + ] } }, "compareNode": { @@ -529,7 +613,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-comparepoint" + } + ] } }, "createContextualFragment": { @@ -577,7 +667,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM Parsing", + "url": "https://w3c.github.io/DOM-Parsing/#idl-def-range-createcontextualfragment(domstring)" + } + ] } }, "deleteContents": { @@ -625,7 +721,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-deletecontents" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-deleteContents" + } + ] } }, "detach": { @@ -680,7 +786,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-detach" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-detach" + } + ] } }, "endContainer": { @@ -728,7 +844,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-endcontainer" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-attr-endParent" + } + ] } }, "endOffset": { @@ -776,7 +902,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-endoffset" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-attr-endOffset" + } + ] } }, "extractContents": { @@ -824,7 +960,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-extractcontents" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-extractContents" + } + ] } }, "getBoundingClientRect": { @@ -872,7 +1018,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-range-getboundingclientrect" + } + ] } }, "getClientRects": { @@ -920,7 +1072,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-range-getclientrects" + } + ] } }, "insertNode": { @@ -968,7 +1126,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-insertnode" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-insertNode" + } + ] }, "collapsed_ranges": { "__compat": { @@ -1064,7 +1232,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-intersectsnode" + } + ] } }, "isPointInRange": { @@ -1112,7 +1286,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-ispointinrange" + } + ] } }, "selectNode": { @@ -1160,7 +1340,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-selectnode" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-selectNode" + } + ] } }, "selectNodeContents": { @@ -1208,7 +1398,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-selectnodecontents" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-selectNodeContents" + } + ] } }, "setEnd": { @@ -1256,7 +1456,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-setend" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-setEnd" + } + ] } }, "setEndAfter": { @@ -1304,7 +1514,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-setendafter" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-setEndAfter" + } + ] } }, "setEndBefore": { @@ -1352,7 +1572,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-setendbefore" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-setEndBefore" + } + ] } }, "setStart": { @@ -1400,7 +1630,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-setstart" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-setStart" + } + ] } }, "setStartAfter": { @@ -1448,7 +1688,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-setstartafter" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-setStartAfter" + } + ] } }, "setStartBefore": { @@ -1496,7 +1746,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-setstartbefore" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-setStartBefore" + } + ] } }, "startContainer": { @@ -1544,7 +1804,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-startcontainer" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-attr-startParent" + } + ] } }, "startOffset": { @@ -1592,7 +1862,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-startoffset" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-attr-startOffset" + } + ] } }, "surroundContents": { @@ -1640,7 +1920,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-surroundcontents" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-surroundContents" + } + ] } }, "toString": { @@ -1688,7 +1978,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-range-stringifier" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level2-Range-method-toString" + } + ] } } } diff --git a/api/ReadableByteStreamController.json b/api/ReadableByteStreamController.json index 81fdaf9a959431..189738e975e7ea 100644 --- a/api/ReadableByteStreamController.json +++ b/api/ReadableByteStreamController.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rbs-controller-class" + } + ] }, "ReadableByteStreamController": { "__compat": { @@ -93,7 +99,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rbs-controller-constructor" + } + ] } }, "byobRequest": { @@ -141,7 +153,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rbs-controller-byob-request" + } + ] } }, "desiredSize": { @@ -189,7 +207,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rbs-controller-desired-size" + } + ] } }, "close": { @@ -237,7 +261,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rbs-controller-close" + } + ] } }, "enqueue": { @@ -285,7 +315,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rbs-controller-enqueue" + } + ] } }, "error": { @@ -333,7 +369,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rbs-controller-error" + } + ] } } } diff --git a/api/ReadableStream.json b/api/ReadableStream.json index 554a6a38a2a584..c94cc35fcefe30 100644 --- a/api/ReadableStream.json +++ b/api/ReadableStream.json @@ -72,7 +72,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-class" + } + ] }, "ReadableStream": { "__compat": { @@ -147,7 +153,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-constructor" + } + ] } }, "locked": { @@ -222,7 +234,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-locked" + } + ] } }, "cancel": { @@ -297,7 +315,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-cancel" + } + ] } }, "getReader": { @@ -372,7 +396,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-get-reader" + } + ] } }, "pipeThrough": { @@ -447,7 +477,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-pipe-through" + } + ] } }, "pipeTo": { @@ -522,7 +558,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-pipe-to" + } + ] } }, "tee": { @@ -597,7 +639,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-tee" + } + ] } } } diff --git a/api/ReadableStreamBYOBReader.json b/api/ReadableStreamBYOBReader.json index f2f3e6714c7163..49b4edf30d38dc 100644 --- a/api/ReadableStreamBYOBReader.json +++ b/api/ReadableStreamBYOBReader.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#byob-reader-class" + } + ] }, "ReadableStreamBYOBReader": { "__compat": { @@ -93,7 +99,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#byob-reader-constructor" + } + ] } }, "closed": { @@ -141,7 +153,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#byob-reader-closed" + } + ] } }, "cancel": { @@ -189,7 +207,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#byob-reader-cancel" + } + ] } }, "read": { @@ -237,7 +261,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#byob-reader-read" + } + ] } }, "releaseLock": { @@ -285,7 +315,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#byob-reader-release-lock" + } + ] } } } diff --git a/api/ReadableStreamBYOBRequest.json b/api/ReadableStreamBYOBRequest.json index 1b39b38e8c2c79..34005ad220bf61 100644 --- a/api/ReadableStreamBYOBRequest.json +++ b/api/ReadableStreamBYOBRequest.json @@ -39,7 +39,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-byob-request-class" + } + ] }, "ReadableStreamBYOBRequest": { "__compat": { @@ -81,7 +87,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-byob-request-constructor" + } + ] } }, "respond": { @@ -123,7 +135,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-byob-request-respond" + } + ] } }, "respondWithNewView": { @@ -165,7 +183,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-byob-request-respond-with-new-view" + } + ] } }, "view": { @@ -207,7 +231,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-byob-request-view" + } + ] } } } diff --git a/api/ReadableStreamDefaultController.json b/api/ReadableStreamDefaultController.json index d2da43e5a581f3..2e55f0568c9481 100644 --- a/api/ReadableStreamDefaultController.json +++ b/api/ReadableStreamDefaultController.json @@ -74,7 +74,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-default-controller-class" + } + ] }, "ReadableStreamDefaultController": { "__compat": { @@ -125,7 +131,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-default-controller-constructor" + } + ] } }, "close": { @@ -176,7 +188,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-default-controller-class" + } + ] } }, "desiredSize": { @@ -227,7 +245,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-default-controller-desired-size" + } + ] } }, "enqueue": { @@ -278,7 +302,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-default-controller-enqueue" + } + ] } }, "error": { @@ -329,7 +359,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#rs-default-controller-error" + } + ] } } } diff --git a/api/ReadableStreamDefaultReader.json b/api/ReadableStreamDefaultReader.json index bf63984bec94a7..10ed4646fcba28 100644 --- a/api/ReadableStreamDefaultReader.json +++ b/api/ReadableStreamDefaultReader.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-reader-class" + } + ] }, "ReadableStreamDefaultReader": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-reader-constructor" + } + ] } }, "cancel": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-reader-cancel" + } + ] } }, "closed": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-reader-closed" + } + ] } }, "read": { @@ -252,7 +276,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-reader-read" + } + ] } }, "releaseLock": { @@ -303,7 +333,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-reader-release-lock" + } + ] } } } diff --git a/api/RelativeOrientationSensor.json b/api/RelativeOrientationSensor.json index 01003fa677ea2d..228beaa8f23438 100644 --- a/api/RelativeOrientationSensor.json +++ b/api/RelativeOrientationSensor.json @@ -39,7 +39,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Orientation Sensor", + "url": "https://www.w3.org/TR/orientation-sensor/#relativeorientationsensor-interface" + } + ] }, "RelativeOrientationSensor": { "__compat": { @@ -81,7 +87,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Orientation Sensor", + "url": "https://www.w3.org/TR/orientation-sensor/#relativeorientationsensor-interface" + } + ] } } } diff --git a/api/Request.json b/api/Request.json index e3e4b2b9ede025..d6217817e3996a 100644 --- a/api/Request.json +++ b/api/Request.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#request-class" + } + ] }, "Request": { "__compat": { @@ -145,7 +151,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request" + } + ] }, "reponse_body_readablestream": { "__compat": { @@ -472,7 +484,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-cache" + } + ] }, "only_if_cached": { "__compat": { @@ -607,7 +625,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-clone" + } + ] } }, "context": { @@ -749,7 +773,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-credentials" + } + ] }, "default_same-origin": { "__compat": { @@ -851,7 +881,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-destination" + } + ] } }, "headers": { @@ -936,7 +972,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-headers" + } + ] } }, "integrity": { @@ -987,7 +1029,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-integrity" + } + ] } }, "keepalive": { @@ -1123,7 +1171,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-method" + } + ] } }, "mode": { @@ -1174,7 +1228,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-mode" + } + ] }, "navigate_mode": { "__compat": { @@ -1276,7 +1336,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-redirect" + } + ] } }, "referrer": { @@ -1349,7 +1415,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-referrer" + } + ] } }, "referrerPolicy": { @@ -1400,7 +1472,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-referrerpolicy" + } + ] } }, "signal": { @@ -1518,7 +1596,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-request-url" + } + ] } } } diff --git a/api/RequestDestination.json b/api/RequestDestination.json index 0ecfd704f9ec68..208a375724a9e1 100644 --- a/api/RequestDestination.json +++ b/api/RequestDestination.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#requestdestination" + } + ] } } } diff --git a/api/Response.json b/api/Response.json index 93661f64c02574..b4babfe8f7558e 100644 --- a/api/Response.json +++ b/api/Response.json @@ -81,7 +81,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#response-class" + } + ] }, "Response": { "__compat": { @@ -198,7 +204,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response" + } + ] }, "accept_readablestream": { "__compat": { @@ -384,7 +396,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response-headers" + } + ] } }, "ok": { @@ -468,7 +486,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response-ok" + } + ] } }, "redirected": { @@ -519,7 +543,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response-redirected" + } + ] } }, "status": { @@ -603,7 +633,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response-status" + } + ] } }, "statusText": { @@ -687,7 +723,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response-statustext" + } + ] } }, "type": { @@ -771,7 +813,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response-type" + } + ] } }, "url": { @@ -855,7 +903,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response-url" + } + ] } }, "useFinalURL": { @@ -1034,7 +1088,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response-clone" + } + ] } }, "error": { @@ -1085,7 +1145,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response-error" + } + ] } }, "redirect": { @@ -1136,7 +1202,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-response-redirect" + } + ] } }, "trailer": { diff --git a/api/SVGAElement.json b/api/SVGAElement.json index 5c762a23ee0326..eacae948b54689 100644 --- a/api/SVGAElement.json +++ b/api/SVGAElement.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/linking.html#InterfaceSVGAElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/linking.html#InterfaceSVGAElement" + } + ] }, "download": { "__compat": { @@ -398,7 +408,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/text.html#InterfaceSVGAElement" + } + ] } }, "text": { diff --git a/api/SVGAngle.json b/api/SVGAngle.json index 5c268c571935c1..ef2cc5c90a1390 100644 --- a/api/SVGAngle.json +++ b/api/SVGAngle.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGAngle" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/types.html#InterfaceSVGAngle" + } + ] } } } diff --git a/api/SVGAnimateElement.json b/api/SVGAnimateElement.json index b1645a7e1e1459..91182e1315aaba 100644 --- a/api/SVGAnimateElement.json +++ b/api/SVGAnimateElement.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#InterfaceSVGAnimateElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#InterfaceSVGAnimateElement" + } + ] } } } diff --git a/api/SVGAnimateMotionElement.json b/api/SVGAnimateMotionElement.json index 20c8a9774bdfa6..b3be2ccf6bbcef 100644 --- a/api/SVGAnimateMotionElement.json +++ b/api/SVGAnimateMotionElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#InterfaceSVGAnimateMotionElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#InterfaceSVGAnimateMotionElement" + } + ] } } } diff --git a/api/SVGAnimateTransformElement.json b/api/SVGAnimateTransformElement.json index ee275a3911c8cf..6d086c62541879 100644 --- a/api/SVGAnimateTransformElement.json +++ b/api/SVGAnimateTransformElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#InterfaceSVGAnimateTransformElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#InterfaceSVGAnimateTransformElement" + } + ] } } } diff --git a/api/SVGAnimatedString.json b/api/SVGAnimatedString.json index 6fb09a3002994d..2d43fad6d66cb1 100644 --- a/api/SVGAnimatedString.json +++ b/api/SVGAnimatedString.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/#InterfaceSVGAnimatedString" + }, + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedString" + } + ] }, "animVal": { "__compat": { @@ -92,7 +102,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/#InterfaceSVGAnimatedString" + }, + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedString" + } + ] } }, "baseVal": { @@ -140,7 +160,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/#InterfaceSVGAnimatedString" + }, + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedString" + } + ] } } } diff --git a/api/SVGAnimationElement.json b/api/SVGAnimationElement.json index bdd3994730293b..2b3094a3558b80 100644 --- a/api/SVGAnimationElement.json +++ b/api/SVGAnimationElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#InterfaceSVGAnimationElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#InterfaceSVGAnimationElement" + } + ] }, "onbegin": { "__compat": { @@ -92,7 +102,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#__svg__SVGAnimationElement__onbegin" + } + ] } }, "onend": { @@ -140,7 +156,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#__svg__SVGAnimationElement__onend" + } + ] } }, "onrepeat": { @@ -188,7 +210,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#__svg__SVGAnimationElement__onrepeat" + } + ] } }, "targetElement": { @@ -236,7 +264,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#__svg__SVGAnimationElement__targetElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#__svg__SVGAnimationElement__targetElement" + } + ] } } } diff --git a/api/SVGCircleElement.json b/api/SVGCircleElement.json index 6749cb8bdec8ff..97c0aa56d1bb9e 100644 --- a/api/SVGCircleElement.json +++ b/api/SVGCircleElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#InterfaceSVGCircleElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#InterfaceSVGCircleElement" + } + ] }, "cx": { "__compat": { diff --git a/api/SVGClipPathElement.json b/api/SVGClipPathElement.json index 487ea5b01b47ab..b992a734195d6d 100644 --- a/api/SVGClipPathElement.json +++ b/api/SVGClipPathElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#InterfaceSVGClipPathElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/masking.html#InterfaceSVGClipPathElement" + } + ] }, "clipPathUnits": { "__compat": { diff --git a/api/SVGComponentTransferFunctionElement.json b/api/SVGComponentTransferFunctionElement.json index e21c2a5758fd8e..0d879734346a0b 100644 --- a/api/SVGComponentTransferFunctionElement.json +++ b/api/SVGComponentTransferFunctionElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGComponentTransferFunctionElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGComponentTransferFunctionElement" + } + ] } } } diff --git a/api/SVGDefsElement.json b/api/SVGDefsElement.json index ad985ad0ab86f4..0e37a9e4767c25 100644 --- a/api/SVGDefsElement.json +++ b/api/SVGDefsElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#InterfaceSVGDefsElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGDefsElement" + } + ] } } } diff --git a/api/SVGDescElement.json b/api/SVGDescElement.json index e4cdc6ce7e8a92..7db73bc8be5fed 100644 --- a/api/SVGDescElement.json +++ b/api/SVGDescElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#InterfaceSVGDescElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGDescElement" + } + ] } } } diff --git a/api/SVGElement.json b/api/SVGElement.json index e58a7f1089ff61..9e3801b421a80d 100644 --- a/api/SVGElement.json +++ b/api/SVGElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/types.html#InterfaceSVGElement" + } + ] }, "dataset": { "__compat": { @@ -92,7 +102,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#__svg__SVGElement__dataset" + } + ] } }, "offsetHeight": { diff --git a/api/SVGEllipseElement.json b/api/SVGEllipseElement.json index 974be9929f7822..83e991822a78ed 100644 --- a/api/SVGEllipseElement.json +++ b/api/SVGEllipseElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#InterfaceSVGEllipseElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#InterfaceSVGEllipseElement" + } + ] }, "cx": { "__compat": { diff --git a/api/SVGFEBlendElement.json b/api/SVGFEBlendElement.json index 98037cc3eada70..21959d5e1a9263 100644 --- a/api/SVGFEBlendElement.json +++ b/api/SVGFEBlendElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEBlendElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEBlendElement" + } + ] } } } diff --git a/api/SVGFEColorMatrixElement.json b/api/SVGFEColorMatrixElement.json index 73f48b0d5201a2..c92a4e02581452 100644 --- a/api/SVGFEColorMatrixElement.json +++ b/api/SVGFEColorMatrixElement.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEColorMatrixElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEColorMatrixElement" + } + ] }, "in1": { "__compat": { diff --git a/api/SVGFEComponentTransferElement.json b/api/SVGFEComponentTransferElement.json index bf2d5227fce395..da6a7cd38575bd 100644 --- a/api/SVGFEComponentTransferElement.json +++ b/api/SVGFEComponentTransferElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEComponentTransferElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEComponentTransferElement" + } + ] } } } diff --git a/api/SVGFECompositeElement.json b/api/SVGFECompositeElement.json index b1eba2a5d9468f..23c8de28d9e0a9 100644 --- a/api/SVGFECompositeElement.json +++ b/api/SVGFECompositeElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFECompositeElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFECompositeElement" + } + ] } } } diff --git a/api/SVGFEConvolveMatrixElement.json b/api/SVGFEConvolveMatrixElement.json index 918827aa779d9d..a7e6f20cc6c411 100644 --- a/api/SVGFEConvolveMatrixElement.json +++ b/api/SVGFEConvolveMatrixElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEConvolveMatrixElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEConvolveMatrixElement" + } + ] } } } diff --git a/api/SVGFEDiffuseLightingElement.json b/api/SVGFEDiffuseLightingElement.json index 9cc51b4cb0430c..0445e26604fd23 100644 --- a/api/SVGFEDiffuseLightingElement.json +++ b/api/SVGFEDiffuseLightingElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEDiffuseLightingElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEDiffuseLightingElement" + } + ] } } } diff --git a/api/SVGFEDisplacementMapElement.json b/api/SVGFEDisplacementMapElement.json index 6d23e5c05f12cf..6357cad428c476 100644 --- a/api/SVGFEDisplacementMapElement.json +++ b/api/SVGFEDisplacementMapElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEDisplacementMapElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEDisplacementMapElement" + } + ] } } } diff --git a/api/SVGFEDistantLightElement.json b/api/SVGFEDistantLightElement.json index 220b613a437be6..e9054ef1fc82e6 100644 --- a/api/SVGFEDistantLightElement.json +++ b/api/SVGFEDistantLightElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEDistantLightElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEDistantLightElement" + } + ] } } } diff --git a/api/SVGFEDropShadowElement.json b/api/SVGFEDropShadowElement.json index 4ab8946196254e..0d14e2ea5b9ffd 100644 --- a/api/SVGFEDropShadowElement.json +++ b/api/SVGFEDropShadowElement.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEDropShadowElement" + } + ] } } } diff --git a/api/SVGFEFloodElement.json b/api/SVGFEFloodElement.json index 5585fa8f6156df..a5680509ff1978 100644 --- a/api/SVGFEFloodElement.json +++ b/api/SVGFEFloodElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEFloodElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEFloodElement" + } + ] } } } diff --git a/api/SVGFEFuncAElement.json b/api/SVGFEFuncAElement.json index 39fc99a7248cb2..af32627b64d576 100644 --- a/api/SVGFEFuncAElement.json +++ b/api/SVGFEFuncAElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEFuncAElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEFuncAElement" + } + ] } } } diff --git a/api/SVGFEFuncBElement.json b/api/SVGFEFuncBElement.json index 6dbb1dcf2858b0..474787ea1d3f92 100644 --- a/api/SVGFEFuncBElement.json +++ b/api/SVGFEFuncBElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEFuncBElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEFuncBElement" + } + ] } } } diff --git a/api/SVGFEFuncGElement.json b/api/SVGFEFuncGElement.json index af53aaab5aef66..f30e396a19b533 100644 --- a/api/SVGFEFuncGElement.json +++ b/api/SVGFEFuncGElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEFuncGElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEFuncGElement" + } + ] } } } diff --git a/api/SVGFEFuncRElement.json b/api/SVGFEFuncRElement.json index fd16fd743cb26a..4ddd8458b71353 100644 --- a/api/SVGFEFuncRElement.json +++ b/api/SVGFEFuncRElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEFuncRElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEFuncRElement" + } + ] } } } diff --git a/api/SVGFEGaussianBlurElement.json b/api/SVGFEGaussianBlurElement.json index 1a1403040d530b..6356265d68c49e 100644 --- a/api/SVGFEGaussianBlurElement.json +++ b/api/SVGFEGaussianBlurElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEGaussianBlurElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEGaussianBlurElement" + } + ] } } } diff --git a/api/SVGFEImageElement.json b/api/SVGFEImageElement.json index 642f4d60751e24..b8f1cc68be1e05 100644 --- a/api/SVGFEImageElement.json +++ b/api/SVGFEImageElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEImageElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEImageElement" + } + ] } } } diff --git a/api/SVGFEMergeElement.json b/api/SVGFEMergeElement.json index d3094aa1eb6d2b..81f666651e61fc 100644 --- a/api/SVGFEMergeElement.json +++ b/api/SVGFEMergeElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEMergeElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEMergeElement" + } + ] } } } diff --git a/api/SVGFEMergeNodeElement.json b/api/SVGFEMergeNodeElement.json index 1ae5a2766c45ac..c18eb59e4e0fdb 100644 --- a/api/SVGFEMergeNodeElement.json +++ b/api/SVGFEMergeNodeElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEMergeNodeElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEMergeNodeElement" + } + ] } } } diff --git a/api/SVGFEMorphologyElement.json b/api/SVGFEMorphologyElement.json index 3b543151f9607b..1fc52b20f2cf8a 100644 --- a/api/SVGFEMorphologyElement.json +++ b/api/SVGFEMorphologyElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEMorphologyElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEMorphologyElement" + } + ] } } } diff --git a/api/SVGFEOffsetElement.json b/api/SVGFEOffsetElement.json index 5937afbeaff778..9cad9434e462b7 100644 --- a/api/SVGFEOffsetElement.json +++ b/api/SVGFEOffsetElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEOffsetElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEOffsetElement" + } + ] } } } diff --git a/api/SVGFEPointLightElement.json b/api/SVGFEPointLightElement.json index c838f1cff5a6ee..666d6d178f0c9d 100644 --- a/api/SVGFEPointLightElement.json +++ b/api/SVGFEPointLightElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFEPointLightElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEPointLightElement" + } + ] } } } diff --git a/api/SVGFESpecularLightingElement.json b/api/SVGFESpecularLightingElement.json index 5043d6fcf6568d..882673d20d268d 100644 --- a/api/SVGFESpecularLightingElement.json +++ b/api/SVGFESpecularLightingElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFESpecularLightingElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFESpecularLightingElement" + } + ] } } } diff --git a/api/SVGFESpotLightElement.json b/api/SVGFESpotLightElement.json index acaf8a5abe623c..b1217737a05bdc 100644 --- a/api/SVGFESpotLightElement.json +++ b/api/SVGFESpotLightElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFESpotLightElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFESpotLightElement" + } + ] } } } diff --git a/api/SVGFETileElement.json b/api/SVGFETileElement.json index 1fca070e2a98ec..1590087835c596 100644 --- a/api/SVGFETileElement.json +++ b/api/SVGFETileElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFETileElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFETileElement" + } + ] } } } diff --git a/api/SVGFETurbulenceElement.json b/api/SVGFETurbulenceElement.json index ee76c7f67ecfc7..710985a948982f 100644 --- a/api/SVGFETurbulenceElement.json +++ b/api/SVGFETurbulenceElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFETurbulenceElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFETurbulenceElement" + } + ] } } } diff --git a/api/SVGFilterElement.json b/api/SVGFilterElement.json index 678ecf9075db4f..ac87e129f37b64 100644 --- a/api/SVGFilterElement.json +++ b/api/SVGFilterElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFilterElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFilterElement" + } + ] } } } diff --git a/api/SVGFilterPrimitiveStandardAttributes.json b/api/SVGFilterPrimitiveStandardAttributes.json index 54c47fcd8e3485..cd40669e874588 100644 --- a/api/SVGFilterPrimitiveStandardAttributes.json +++ b/api/SVGFilterPrimitiveStandardAttributes.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#InterfaceSVGFilterPrimitiveStandardAttributes" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFilterPrimitiveStandardAttributes" + } + ] } } } diff --git a/api/SVGForeignObjectElement.json b/api/SVGForeignObjectElement.json index 9d644f83c39588..61bca9711cfdcb 100644 --- a/api/SVGForeignObjectElement.json +++ b/api/SVGForeignObjectElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/embedded.html#ForeignObjectElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/extend.html#InterfaceSVGForeignObjectElement" + } + ] } } } diff --git a/api/SVGGElement.json b/api/SVGGElement.json index 8d0655e8ea658b..1c5b0ded525018 100644 --- a/api/SVGGElement.json +++ b/api/SVGGElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#InterfaceSVGGElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGGElement" + } + ] } } } diff --git a/api/SVGGeometryElement.json b/api/SVGGeometryElement.json index 01a54e2b373eed..ee2849baf59e22 100644 --- a/api/SVGGeometryElement.json +++ b/api/SVGGeometryElement.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGGeometryElement" + } + ] }, "supportOtherThanPath": { "__compat": { @@ -140,7 +146,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#__svg__SVGGeometryElement__pathLength" + } + ] } }, "isPointInFill": { @@ -188,7 +200,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#__svg__SVGGeometryElement__isPointInFill" + } + ] } }, "isPointInStroke": { @@ -236,7 +254,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#__svg__SVGGeometryElement__isPointInStroke" + } + ] } }, "getTotalLength": { @@ -286,7 +310,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#__svg__SVGGeometryElement__getTotalLength" + } + ] } }, "getPointAtLength": { @@ -336,7 +366,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#__svg__SVGGeometryElement__getPointAtLength" + } + ] } } } diff --git a/api/SVGGradientElement.json b/api/SVGGradientElement.json index 9917581298c3f7..07dd9e2768f56e 100644 --- a/api/SVGGradientElement.json +++ b/api/SVGGradientElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#InterfaceSVGGradientElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/pservers.html#InterfaceSVGGradientElement" + } + ] } } } diff --git a/api/SVGGraphicsElement.json b/api/SVGGraphicsElement.json index 6b08821d7b125c..fe76a5312a8098 100644 --- a/api/SVGGraphicsElement.json +++ b/api/SVGGraphicsElement.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGGraphicsElement" + } + ] }, "transform": { "__compat": { diff --git a/api/SVGImageElement.json b/api/SVGImageElement.json index 9bd3616a90dfc6..e783a9280f0ca7 100644 --- a/api/SVGImageElement.json +++ b/api/SVGImageElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/embedded.html#InterfaceSVGImageElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGImageElement" + } + ] }, "x": { "__compat": { diff --git a/api/SVGLineElement.json b/api/SVGLineElement.json index 2d3784f9b6157b..1efb610377a845 100644 --- a/api/SVGLineElement.json +++ b/api/SVGLineElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#InterfaceSVGLineElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#InterfaceSVGLineElement" + } + ] }, "x1": { "__compat": { diff --git a/api/SVGLinearGradientElement.json b/api/SVGLinearGradientElement.json index b7f2db09044cca..f616b1741eb363 100644 --- a/api/SVGLinearGradientElement.json +++ b/api/SVGLinearGradientElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#InterfaceSVGLinearGradientElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/pservers.html#InterfaceSVGLinearGradientElement" + } + ] } } } diff --git a/api/SVGMPathElement.json b/api/SVGMPathElement.json index 78d0e4a19d0d11..8198b477aea741 100644 --- a/api/SVGMPathElement.json +++ b/api/SVGMPathElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#InterfaceSVGMPathElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#InterfaceSVGMPathElement" + } + ] } } } diff --git a/api/SVGMaskElement.json b/api/SVGMaskElement.json index e2b51e6ebfc624..940a5dd1b4eb3b 100644 --- a/api/SVGMaskElement.json +++ b/api/SVGMaskElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#InterfaceSVGMaskElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/masking.html#InterfaceSVGMaskElement" + } + ] }, "maskUnits": { "__compat": { diff --git a/api/SVGMeshElement.json b/api/SVGMeshElement.json index 84dbe335f4c62f..877af36cb93a7e 100644 --- a/api/SVGMeshElement.json +++ b/api/SVGMeshElement.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#InterfaceSVGMeshElement" + } + ] } } } diff --git a/api/SVGMetadataElement.json b/api/SVGMetadataElement.json index 896605d57dffc4..68fc63487efc90 100644 --- a/api/SVGMetadataElement.json +++ b/api/SVGMetadataElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#InterfaceSVGMetadataElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGMetadataElement" + } + ] } } } diff --git a/api/SVGNumber.json b/api/SVGNumber.json index b8c0cb953d0a13..f5f7c8881c81ae 100644 --- a/api/SVGNumber.json +++ b/api/SVGNumber.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGNumber" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/types.html#InterfaceSVGNumber" + } + ] } } } diff --git a/api/SVGPathElement.json b/api/SVGPathElement.json index f8b76bfeef0fa5..c5930cdc27ae3f 100644 --- a/api/SVGPathElement.json +++ b/api/SVGPathElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/paths.html#InterfaceSVGPathElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/paths.html#InterfaceSVGPathElement" + } + ] }, "pathLength": { "__compat": { diff --git a/api/SVGPatternElement.json b/api/SVGPatternElement.json index edc9b2e72ce07f..74db9a0b8cae5c 100644 --- a/api/SVGPatternElement.json +++ b/api/SVGPatternElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#InterfaceSVGPatternElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/pservers.html#InterfaceSVGPatternElement" + } + ] }, "height": { "__compat": { diff --git a/api/SVGPolygonElement.json b/api/SVGPolygonElement.json index da3acaf4080cd0..31acfefdbbca19 100644 --- a/api/SVGPolygonElement.json +++ b/api/SVGPolygonElement.json @@ -54,7 +54,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#InterfaceSVGPolygonElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#InterfaceSVGPolygonElement" + } + ] } } } diff --git a/api/SVGPolylineElement.json b/api/SVGPolylineElement.json index 55ecba4c50f8dc..6a23f29e11e1fe 100644 --- a/api/SVGPolylineElement.json +++ b/api/SVGPolylineElement.json @@ -54,7 +54,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#InterfaceSVGPolylineElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#InterfaceSVGPolylineElement" + } + ] } } } diff --git a/api/SVGRadialGradientElement.json b/api/SVGRadialGradientElement.json index 1168705b099df1..45f8d640db98c0 100644 --- a/api/SVGRadialGradientElement.json +++ b/api/SVGRadialGradientElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#InterfaceSVGRadialGradientElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/pservers.html#InterfaceSVGRadialGradientElement" + } + ] } } } diff --git a/api/SVGRect.json b/api/SVGRect.json index 9f01bc925c48ec..7a4dbcb2a2f2ef 100644 --- a/api/SVGRect.json +++ b/api/SVGRect.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#InterfaceSVGRectElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#InterfaceSVGRectElement" + } + ] }, "height": { "__compat": { diff --git a/api/SVGRectElement.json b/api/SVGRectElement.json index 0babf4061093ad..dd1800a96eee36 100644 --- a/api/SVGRectElement.json +++ b/api/SVGRectElement.json @@ -54,7 +54,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#InterfaceSVGRectElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#InterfaceSVGRectElement" + } + ] }, "height": { "__compat": { diff --git a/api/SVGSVGElement.json b/api/SVGSVGElement.json index 15a238eef5cab9..1aa36a904a90c3 100644 --- a/api/SVGSVGElement.json +++ b/api/SVGSVGElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#InterfaceSVGSVGElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGSVGElement" + } + ] }, "animationsPaused": { "__compat": { diff --git a/api/SVGScriptElement.json b/api/SVGScriptElement.json index 3caa3f1c68cce6..a184ea56f05314 100644 --- a/api/SVGScriptElement.json +++ b/api/SVGScriptElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/interact.html#InterfaceSVGScriptElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/script.html#InterfaceSVGScriptElement" + } + ] } } } diff --git a/api/SVGSetElement.json b/api/SVGSetElement.json index 4142ff9da975de..2308fde185b13d 100644 --- a/api/SVGSetElement.json +++ b/api/SVGSetElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#InterfaceSVGSetElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#InterfaceSVGSetElement" + } + ] } } } diff --git a/api/SVGSolidcolorElement.json b/api/SVGSolidcolorElement.json index d84a063e677d1a..fb34109f936d72 100644 --- a/api/SVGSolidcolorElement.json +++ b/api/SVGSolidcolorElement.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#InterfaceSVGSolidcolorElement" + } + ] } } } diff --git a/api/SVGStopElement.json b/api/SVGStopElement.json index 4352c21c237b68..ca43989c0ec7f1 100644 --- a/api/SVGStopElement.json +++ b/api/SVGStopElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#InterfaceSVGStopElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/pservers.html#InterfaceSVGStopElement" + } + ] } } } diff --git a/api/SVGStyleElement.json b/api/SVGStyleElement.json index c110d7118edd62..023c8f0e30354e 100644 --- a/api/SVGStyleElement.json +++ b/api/SVGStyleElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/styling.html#InterfaceSVGStyleElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/styling.html#InterfaceSVGStyleElement" + } + ] } } } diff --git a/api/SVGSwitchElement.json b/api/SVGSwitchElement.json index 396d025c1f9444..c4a3ad47768390 100644 --- a/api/SVGSwitchElement.json +++ b/api/SVGSwitchElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#InterfaceSVGSwitchElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGSwitchElement" + } + ] } } } diff --git a/api/SVGSymbolElement.json b/api/SVGSymbolElement.json index 2879f522ff1799..70f8c2df9a508e 100644 --- a/api/SVGSymbolElement.json +++ b/api/SVGSymbolElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#InterfaceSVGSymbolElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGSymbolElement" + } + ] } } } diff --git a/api/SVGTSpanElement.json b/api/SVGTSpanElement.json index 9df982b7494e9c..345283a18e4025 100644 --- a/api/SVGTSpanElement.json +++ b/api/SVGTSpanElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/text.html#InterfaceSVGTSpanElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/text.html#InterfaceSVGTSpanElement" + } + ] } } } diff --git a/api/SVGTests.json b/api/SVGTests.json index 4a3c56e36c4310..d692980cedcb95 100644 --- a/api/SVGTests.json +++ b/api/SVGTests.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGTests" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/types.html#InterfaceSVGTests" + } + ] }, "hasextension": { "__compat": { diff --git a/api/SVGTextContentElement.json b/api/SVGTextContentElement.json index 7bee4d83bf018d..b3c166760ecc00 100644 --- a/api/SVGTextContentElement.json +++ b/api/SVGTextContentElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/text.html#InterfaceSVGTextContentElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/text.html#InterfaceSVGTextContentElement" + } + ] }, "lengthAdjust": { "__compat": { diff --git a/api/SVGTextElement.json b/api/SVGTextElement.json index 4eb315b97729ed..68b996c2cf02df 100644 --- a/api/SVGTextElement.json +++ b/api/SVGTextElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/text.html#InterfaceSVGTextElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/text.html#InterfaceSVGTextElement" + } + ] } } } diff --git a/api/SVGTextPathElement.json b/api/SVGTextPathElement.json index 894d46a2041945..97f67c1c78d9f7 100644 --- a/api/SVGTextPathElement.json +++ b/api/SVGTextPathElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/text.html#InterfaceSVGTextPathElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/text.html#InterfaceSVGTextPathElement" + } + ] }, "method": { "__compat": { diff --git a/api/SVGTextPositioningElement.json b/api/SVGTextPositioningElement.json index 8df1d49ef094ac..0bb73191e9869d 100644 --- a/api/SVGTextPositioningElement.json +++ b/api/SVGTextPositioningElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGGeometryElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/types.html#InterfaceSVGGeometryElement" + } + ] }, "dx": { "__compat": { diff --git a/api/SVGTitleElement.json b/api/SVGTitleElement.json index 35efcd29fa8b9d..7a8a1d033b763f 100644 --- a/api/SVGTitleElement.json +++ b/api/SVGTitleElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#InterfaceSVGTitleElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGTitleElement" + } + ] } } } diff --git a/api/SVGURIReference.json b/api/SVGURIReference.json index 0becb34f1a658d..0c4278ea6990b4 100644 --- a/api/SVGURIReference.json +++ b/api/SVGURIReference.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGURIReference" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/types.html#InterfaceSVGURIReference" + } + ] } } } diff --git a/api/SVGUnitTypes.json b/api/SVGUnitTypes.json index 2c96eff36d5510..852369c33401c1 100644 --- a/api/SVGUnitTypes.json +++ b/api/SVGUnitTypes.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGUnitTypes" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/types.html#InterfaceSVGUnitTypes" + } + ] } } } diff --git a/api/SVGUseElement.json b/api/SVGUseElement.json index dc01be982049a4..35ecc93064fccd 100644 --- a/api/SVGUseElement.json +++ b/api/SVGUseElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#InterfaceSVGUseElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGUseElement" + } + ] }, "animatedInstanceRoot": { "__compat": { diff --git a/api/SVGViewElement.json b/api/SVGViewElement.json index 17dbf913f7b1a5..cdf46d6c418009 100644 --- a/api/SVGViewElement.json +++ b/api/SVGViewElement.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#InterfaceSVGTitleElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#InterfaceSVGTitleElement" + } + ] }, "viewtarget": { "__compat": { diff --git a/api/SVGZoomAndPan.json b/api/SVGZoomAndPan.json index 46c3a6aad24e0a..4f5cacd9b453ab 100644 --- a/api/SVGZoomAndPan.json +++ b/api/SVGZoomAndPan.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/types.html#InterfaceSVGZoomAndPan" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/types.html#InterfaceSVGZoomAndPan" + } + ] } } } diff --git a/api/Screen.json b/api/Screen.json index 8de3a27d88aa21..fd6263adb0f739 100644 --- a/api/Screen.json +++ b/api/Screen.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#the-screen-interface" + } + ] }, "availHeight": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-screen-availheight" + } + ] } }, "availLeft": { @@ -253,7 +265,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-screen-availwidth" + } + ] } }, "colorDepth": { @@ -307,7 +325,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-screen-colordepth" + } + ] } }, "height": { @@ -358,7 +382,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-screen-height" + } + ] } }, "left": { @@ -764,7 +794,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-screen-pixeldepth" + } + ] } }, "top": { @@ -920,7 +956,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-screen-width" + } + ] } } } diff --git a/api/ScreenOrientation.json b/api/ScreenOrientation.json index 5837345b5f1c53..681d86ed79208b 100644 --- a/api/ScreenOrientation.json +++ b/api/ScreenOrientation.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Screen Orientation", + "url": "https://w3c.github.io/screen-orientation/#screenorientation-interface" + } + ] }, "angle": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Screen Orientation", + "url": "https://w3c.github.io/screen-orientation/#dom-screenorientation-angle" + } + ] } }, "onchange": { @@ -200,7 +212,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Screen Orientation", + "url": "https://w3c.github.io/screen-orientation/#dom-screenorientation-type" + } + ] } }, "lock": { @@ -251,7 +269,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Screen Orientation", + "url": "https://w3c.github.io/screen-orientation/#dom-screenorientation-lock" + } + ] } }, "unlock": { @@ -302,7 +326,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Screen Orientation", + "url": "https://w3c.github.io/screen-orientation/#dom-screenorientation-unlock" + } + ] } } } diff --git a/api/SecurityPolicyViolationEvent.json b/api/SecurityPolicyViolationEvent.json index f9a3e28e5dccab..dd5e1d109a5dd2 100644 --- a/api/SecurityPolicyViolationEvent.json +++ b/api/SecurityPolicyViolationEvent.json @@ -72,7 +72,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#report-violation" + } + ] }, "worker_support": { "__compat": { @@ -222,7 +228,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-securitypolicyviolationevent" + } + ] } }, "blockedURI": { @@ -297,7 +309,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-blockeduri" + } + ] } }, "columnNumber": { @@ -372,7 +390,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-columnnumber" + } + ] } }, "disposition": { @@ -447,7 +471,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-disposition" + } + ] } }, "documentURI": { @@ -522,7 +552,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-documenturi" + } + ] } }, "effectiveDirective": { @@ -597,7 +633,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-effectivedirective" + } + ] } }, "lineNumber": { @@ -672,7 +714,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-linenumber" + } + ] } }, "originalPolicy": { @@ -747,7 +795,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-originalPolicy" + } + ] } }, "referrer": { @@ -822,7 +876,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-referrer" + } + ] } }, "sample": { @@ -897,7 +957,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-sample" + } + ] } }, "sourceFile": { @@ -972,7 +1038,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-sourceFile" + } + ] } }, "statusCode": { @@ -1047,7 +1119,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-statusCode" + } + ] } }, "violatedDirective": { @@ -1122,7 +1200,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-violateddirective" + } + ] } } } diff --git a/api/Selection.json b/api/Selection.json index 9bbcc75c0ded78..e588a972d7c149 100644 --- a/api/Selection.json +++ b/api/Selection.json @@ -47,7 +47,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#definition" + }, + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#selection" + } + ] }, "addRange": { "__compat": { @@ -94,7 +104,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-addrange" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-addRange-void-Range-range" + } + ] } }, "anchorNode": { @@ -142,7 +162,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-anchornode" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-anchorNode" + } + ] } }, "anchorOffset": { @@ -190,7 +220,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-anchoroffset" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-anchorOffset" + } + ] } }, "collapse": { @@ -238,7 +278,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-collapse-void-Node-node-unsigned-long-offset" + }, + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-collapse" + } + ] } }, "collapseToStart": { @@ -286,7 +336,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-collapsetostart" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-collapseToStart-void" + } + ] } }, "collapseToEnd": { @@ -334,7 +394,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-collapsetoend" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-collapseToEnd-void" + } + ] } }, "containsNode": { @@ -384,7 +454,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-containsNode" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-containsNode-boolean-Node-node-boolean-allowPartialContainment" + } + ] }, "partialContainment": { "__compat": { @@ -480,7 +560,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-deletefromdocument" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-deleteFromDocument-void" + } + ] } }, "empty": { @@ -529,7 +619,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-removeallranges" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-removeAllRanges-void" + } + ] } }, "extend": { @@ -577,7 +677,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-extend" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-extend-void-Node-node-unsigned-long-offset" + } + ] }, "offset": { "__compat": { @@ -673,7 +783,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-focusnode" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-focusNode" + } + ] } }, "focusOffset": { @@ -721,7 +841,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-focusOffset" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-focusOffset" + } + ] } }, "getRangeAt": { @@ -769,7 +899,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-getrangeat" + } + ] } }, "isCollapsed": { @@ -817,7 +953,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-iscollapsed" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-isCollapsed" + } + ] } }, "modify": { @@ -1009,7 +1155,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-rangecount" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-rangeCount" + } + ] } }, "removeRange": { @@ -1057,7 +1213,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-removerange" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-removeRange-void-Range-range" + } + ] } }, "removeAllRanges": { @@ -1105,7 +1271,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-removeallranges" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-removeAllRanges-void" + } + ] } }, "selectAllChildren": { @@ -1153,7 +1329,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-selectallchildren" + }, + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-selectAllChildren-void-Node-node" + } + ] } }, "setBaseAndExtent": { @@ -1201,7 +1387,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#dom-selection-setbaseandextent" + } + ] } }, "setPosition": { @@ -1250,7 +1442,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#widl-Selection-collapse-void-Node-node-unsigned-long-offset" + }, + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-collapse" + } + ] } }, "toString": { @@ -1298,7 +1500,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-selection-stringifier" + } + ] } }, "type": { @@ -1346,7 +1554,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#dom-selection-type" + } + ] } } } diff --git a/api/Sensor.json b/api/Sensor.json index 20177e64fb683d..03041ef2fdcb55 100644 --- a/api/Sensor.json +++ b/api/Sensor.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#the-sensor-interface" + } + ] }, "activated": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#dom-sensor-activated" + } + ] } }, "hasReading": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#dom-sensor-hasreading" + } + ] } }, "onactivate": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#dom-sensor-onactivate" + } + ] } }, "onerror": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#dom-sensor-onerror" + } + ] } }, "onreading": { @@ -302,7 +332,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#dom-sensor-onreading" + } + ] } }, "start": { @@ -353,7 +389,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#dom-sensor-start" + } + ] } }, "stop": { @@ -404,7 +446,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#dom-sensor-stop" + } + ] } }, "timestamp": { @@ -455,7 +503,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#dom-sensor-timestamp" + } + ] } } } diff --git a/api/SensorErrorEvent.json b/api/SensorErrorEvent.json index cd22b1af9ffcf0..08585d7ca8d57b 100644 --- a/api/SensorErrorEvent.json +++ b/api/SensorErrorEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#the-sensor-error-event-interface" + } + ] }, "SensorErrorEvent": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#dom-sensorerrorevent-sensorerrorevent" + } + ] } }, "error": { @@ -150,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Generic Sensor", + "url": "https://www.w3.org/TR/generic-sensor/#sensor-error-event-error" + } + ] } } } diff --git a/api/ServiceWorker.json b/api/ServiceWorker.json index 458b58a848d6ea..b7c0d584e6493a 100644 --- a/api/ServiceWorker.json +++ b/api/ServiceWorker.json @@ -60,7 +60,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-obj" + } + ] }, "scriptURL": { "__compat": { @@ -122,7 +128,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-url-attribute" + } + ] } }, "state": { @@ -185,7 +197,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-state-attribute" + } + ] } }, "onstatechange": { @@ -248,7 +266,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-onstatechange-attribute" + } + ] } } } diff --git a/api/ServiceWorkerContainer.json b/api/ServiceWorkerContainer.json index b6a762072e14c8..02117fbae3216d 100644 --- a/api/ServiceWorkerContainer.json +++ b/api/ServiceWorkerContainer.json @@ -60,7 +60,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-container" + } + ] }, "controller": { "__compat": { @@ -122,7 +128,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#navigator-service-worker-controller" + } + ] } }, "ready": { @@ -185,7 +197,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#navigator-service-worker-ready" + } + ] } }, "oncontrollerchange": { @@ -248,7 +266,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-container-event-handlers" + } + ] } }, "onerror": { @@ -311,7 +335,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-container-event-handlers" + } + ] } }, "onmessage": { @@ -374,7 +404,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-container-event-handlers" + } + ] } }, "register": { @@ -437,7 +473,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-container" + } + ] } }, "getRegistration": { @@ -500,7 +542,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-container" + } + ] } }, "getRegistrations": { @@ -563,7 +611,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#navigator-service-worker-getRegistrations" + } + ] } }, "onmessageerror": { diff --git a/api/ServiceWorkerGlobalScope.json b/api/ServiceWorkerGlobalScope.json index c81c8a2d89b7f2..35b51e677b5f26 100644 --- a/api/ServiceWorkerGlobalScope.json +++ b/api/ServiceWorkerGlobalScope.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#serviceworkerglobalscope-interface" + }, + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#concept-fetch" + }, + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-ServiceWorkerGlobalScope-onpush" + }, + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerglobalscope-onnotificationclick" + }, + { + "name": "Web Background Sync", + "url": "https://wicg.github.io/BackgroundSync/spec/#sync-event" + } + ] }, "clients": { "__compat": { @@ -100,7 +122,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-global-scope-clients" + } + ] } }, "caches": { @@ -152,7 +180,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#global-caches" + } + ] } }, "onabortpayment": { @@ -269,7 +303,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-global-scope-event-handlers" + } + ] } }, "oncanmakepayment": { @@ -386,7 +426,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-global-scope-event-handlers" + } + ] } }, "oninstall": { @@ -438,7 +484,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-global-scope-event-handlers" + } + ] } }, "onmessage": { @@ -490,7 +542,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-global-scope-event-handlers" + } + ] } }, "onmessageerror": { @@ -593,7 +651,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerglobalscope-onnotificationclick" + } + ] } }, "onnotificationclose": { @@ -645,7 +709,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerglobalscope-onnotificationclose" + } + ] } }, "onpaymentrequest": { @@ -762,7 +832,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-ServiceWorkerGlobalScope-onpush" + } + ] } }, "onpushsubscriptionchange": { @@ -814,7 +890,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-ServiceWorkerGlobalScope-onpushsubscriptionchange" + } + ] } }, "onsync": { @@ -866,7 +948,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Background Sync", + "url": "https://wicg.github.io/BackgroundSync/spec/#sync-event" + } + ] } }, "registration": { @@ -918,7 +1006,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-global-scope-registration" + } + ] } }, "skipWaiting": { @@ -970,7 +1064,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-obj" + } + ] } } } diff --git a/api/ServiceWorkerRegistration.json b/api/ServiceWorkerRegistration.json index 20a1567e8d8076..d19b036f9868be 100644 --- a/api/ServiceWorkerRegistration.json +++ b/api/ServiceWorkerRegistration.json @@ -60,7 +60,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-registration-obj" + }, + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#widl-ServiceWorkerRegistration-pushManager" + } + ] }, "active": { "__compat": { @@ -122,7 +132,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-registration-active-attribute" + } + ] } }, "getNotifications": { @@ -185,7 +201,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerregistration-getnotifications" + } + ] } }, "installing": { @@ -248,7 +270,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-registration-installing-attribute" + } + ] } }, "navigationPreload": { @@ -311,7 +339,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-registration-navigationpreload" + } + ] } }, "onupdatefound": { @@ -362,7 +396,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-registration-onupdatefound-attribute" + } + ] } }, "paymentManager": { @@ -541,7 +581,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Push API", + "url": "https://w3c.github.io/push-api/#pushmanager-interface" + } + ] } }, "scope": { @@ -604,7 +650,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-registration-scope-attribute" + } + ] } }, "showNotification": { @@ -667,7 +719,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerregistration-shownotificationtitle-options" + } + ] }, "actions": { "__compat": { @@ -717,7 +775,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerregistration-shownotificationtitle-options" + } + ] } }, "badge": { @@ -768,7 +832,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerregistration-shownotificationtitle-options" + } + ] } }, "data": { @@ -819,7 +889,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerregistration-shownotificationtitle-options" + } + ] } }, "image": { @@ -870,7 +946,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerregistration-shownotificationtitle-options" + } + ] } }, "renotify": { @@ -921,7 +1003,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerregistration-shownotificationtitle-options" + } + ] } }, "requireInteraction": { @@ -972,7 +1060,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerregistration-shownotificationtitle-options" + } + ] } }, "vibrate": { @@ -1023,7 +1117,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Notifications", + "url": "https://notifications.spec.whatwg.org/#dom-serviceworkerregistration-shownotificationtitle-options" + } + ] } } }, @@ -1154,7 +1254,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-registration-unregister-method" + } + ] } }, "update": { @@ -1237,7 +1343,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-registration-update-method" + } + ] } }, "updateViaCache": { @@ -1351,7 +1463,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#service-worker-registration-waiting-attribute" + } + ] } } } diff --git a/api/ShadowRoot.json b/api/ShadowRoot.json index 97fa4789cf832b..28874c2d54156a 100644 --- a/api/ShadowRoot.json +++ b/api/ShadowRoot.json @@ -76,7 +76,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-shadowroot" + } + ] }, "delegatesFocus": { "__compat": { @@ -268,7 +274,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-shadowroot-host" + } + ] } }, "innerHTML": { @@ -426,7 +438,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-shadowroot-mode" + } + ] } } } diff --git a/api/SharedWorker.json b/api/SharedWorker.json index 2560825859c653..2b8eb71d0620db 100644 --- a/api/SharedWorker.json +++ b/api/SharedWorker.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#sharedworker" + } + ] }, "SharedWorker": { "__compat": { @@ -103,7 +109,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-sharedworker" + } + ] }, "name_option": { "__compat": { @@ -207,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-sharedworker-port" + } + ] } } } diff --git a/api/SharedWorkerGlobalScope.json b/api/SharedWorkerGlobalScope.json index 73d5b3ce4831c3..1e25aab0283083 100644 --- a/api/SharedWorkerGlobalScope.json +++ b/api/SharedWorkerGlobalScope.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#sharedworkerglobalscope" + } + ] }, "applicationCache": { "__compat": { @@ -149,7 +155,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-sharedworkerglobalscope-name" + } + ] } }, "onconnect": { @@ -200,7 +212,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-sharedworkerglobalscope-onconnect" + } + ] } }, "close": { @@ -251,7 +269,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-sharedworkerglobalscope-close" + } + ] } } } diff --git a/api/Slotable.json b/api/Slotable.json index 49b2a83942efc3..b538d6ea20102d 100644 --- a/api/Slotable.json +++ b/api/Slotable.json @@ -106,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#slotable" + } + ] }, "assignedSlot": { "__compat": { diff --git a/api/SourceBuffer.json b/api/SourceBuffer.json index e92b40b0bbb740..db34c1dec3baca 100644 --- a/api/SourceBuffer.json +++ b/api/SourceBuffer.json @@ -68,7 +68,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#sourcebuffer" + } + ] }, "mode": { "__compat": { @@ -138,7 +144,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-mode" + } + ] } }, "updating": { @@ -209,7 +221,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-updating" + } + ] } }, "buffered": { @@ -280,7 +298,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-buffered" + } + ] } }, "changeType": { @@ -380,7 +404,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#dom-sourcebuffer-changetype" + } + ] } }, "timestampOffset": { @@ -451,7 +481,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-timestampOffset" + } + ] } }, "audioTracks": { @@ -522,7 +558,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-audioTracks" + } + ] } }, "videoTracks": { @@ -593,7 +635,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-videoTracks" + } + ] } }, "textTracks": { @@ -664,7 +712,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-textTracks" + } + ] } }, "appendWindowStart": { @@ -735,7 +789,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-appendWindowStart" + } + ] } }, "appendWindowEnd": { @@ -806,7 +866,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-appendWindowEnd" + } + ] } }, "trackDefaults": { @@ -827,7 +893,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-trackDefaults" + } + ] } }, "onabort": { @@ -1218,7 +1290,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-appendBuffer-void-ArrayBuffer-data" + } + ] } }, "appendBufferAsync": { @@ -1310,7 +1388,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-appendStream-void-ReadableStream-stream-unsigned-long-long-maxSize" + } + ] } }, "abort": { @@ -1381,7 +1465,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-abort-void" + } + ] } }, "remove": { @@ -1452,7 +1542,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBuffer-remove-void-double-start-unrestricted-double-end" + } + ] } }, "removeAsync": { diff --git a/api/SourceBufferList.json b/api/SourceBufferList.json index 6af4da9882f468..3aae99e8e843bf 100644 --- a/api/SourceBufferList.json +++ b/api/SourceBufferList.json @@ -70,7 +70,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#sourcebufferlist" + } + ] }, "SourceBuffer": { "__compat": { @@ -132,7 +138,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBufferList-SourceBuffer-getter-unsigned-long-index" + } + ] } }, "length": { @@ -205,7 +217,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-SourceBufferList-length" + } + ] } }, "onaddsourcebuffer": { diff --git a/api/SpeechGrammar.json b/api/SpeechGrammar.json index 19873d0a07b435..c2f541b6c841a0 100644 --- a/api/SpeechGrammar.json +++ b/api/SpeechGrammar.json @@ -58,7 +58,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-speechgrammar" + } + ] }, "SpeechGrammar": { "__compat": { @@ -119,7 +125,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-speechgrammar" + } + ] } }, "src": { @@ -178,7 +190,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-grammarSrc" + } + ] } }, "weight": { @@ -237,7 +255,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-grammarWeight" + } + ] } } } diff --git a/api/SpeechGrammarList.json b/api/SpeechGrammarList.json index 86e62e198d8887..f7ccefa11a8515 100644 --- a/api/SpeechGrammarList.json +++ b/api/SpeechGrammarList.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-speechgrammarlist" + } + ] }, "SpeechGrammarList": { "__compat": { @@ -102,7 +108,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-speechgrammarlist" + } + ] } }, "addFromString": { @@ -156,7 +168,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-addGrammarstring" + } + ] } }, "addFromURI": { @@ -210,7 +228,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-addGrammar" + } + ] } }, "item": { @@ -262,7 +286,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-speechgrammarlistitem" + } + ] } }, "length": { @@ -316,7 +346,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-speechgrammarlistlength" + } + ] } } } diff --git a/api/SpeechRecognition.json b/api/SpeechRecognition.json index 7c3dca5cba9edc..141ab962334857 100644 --- a/api/SpeechRecognition.json +++ b/api/SpeechRecognition.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-section" + } + ] }, "SpeechRecognition": { "__compat": { @@ -101,7 +107,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-section" + } + ] } }, "abort": { @@ -155,7 +167,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-abort" + } + ] } }, "continuous": { @@ -209,7 +227,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-continuous" + } + ] } }, "grammars": { @@ -263,7 +287,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-grammars" + } + ] } }, "interimResults": { @@ -317,7 +347,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-interimresults" + } + ] } }, "lang": { @@ -371,7 +407,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-lang" + } + ] } }, "maxAlternatives": { @@ -425,7 +467,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-maxalternatives" + } + ] } }, "onaudioend": { @@ -479,7 +527,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onaudioend" + } + ] } }, "onaudiostart": { @@ -533,7 +587,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onaudiostart" + } + ] } }, "onend": { @@ -587,7 +647,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onend" + } + ] } }, "onerror": { @@ -641,7 +707,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onerror" + } + ] } }, "onnomatch": { @@ -695,7 +767,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onnomatch" + } + ] } }, "onresult": { @@ -749,7 +827,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onresult" + } + ] } }, "onsoundend": { @@ -803,7 +887,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onsoundend" + } + ] } }, "onsoundstart": { @@ -857,7 +947,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onsoundstart" + } + ] } }, "onspeechend": { @@ -911,7 +1007,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onspeechend" + } + ] } }, "onspeechstart": { @@ -965,7 +1067,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onspeechstart" + } + ] } }, "onstart": { @@ -1019,7 +1127,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-onstart" + } + ] } }, "serviceURI": { @@ -1073,7 +1187,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-serviceuri" + } + ] } }, "start": { @@ -1127,7 +1247,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-start" + } + ] } }, "stop": { @@ -1181,7 +1307,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-stop" + } + ] } } } diff --git a/api/SpeechRecognitionAlternative.json b/api/SpeechRecognitionAlternative.json index cd2fdbfc37a73f..413676db08ec2e 100644 --- a/api/SpeechRecognitionAlternative.json +++ b/api/SpeechRecognitionAlternative.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-alternative" + } + ] }, "confidence": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-confidence" + } + ] } }, "transcript": { @@ -158,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-transcript" + } + ] } } } diff --git a/api/SpeechRecognitionError.json b/api/SpeechRecognitionError.json index 4facddcf585ced..42e5009e0f44c0 100644 --- a/api/SpeechRecognitionError.json +++ b/api/SpeechRecognitionError.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-error" + } + ] }, "error": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-error" + } + ] } }, "message": { @@ -158,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-message" + } + ] } } } diff --git a/api/SpeechRecognitionEvent.json b/api/SpeechRecognitionEvent.json index 6f3537b816079c..9adeebdfa29dc2 100644 --- a/api/SpeechRecognitionEvent.json +++ b/api/SpeechRecognitionEvent.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-event" + } + ] }, "emma": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-emma" + } + ] } }, "interpretation": { @@ -158,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-interpretation" + } + ] } }, "resultIndex": { @@ -212,7 +230,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-resultIndex" + } + ] } }, "results": { @@ -266,7 +290,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-results" + } + ] } } } diff --git a/api/SpeechRecognitionResult.json b/api/SpeechRecognitionResult.json index 777c9cced13669..f12085c718df7b 100644 --- a/api/SpeechRecognitionResult.json +++ b/api/SpeechRecognitionResult.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-result" + } + ] }, "isFinal": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-isFinal" + } + ] } }, "length": { @@ -158,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-length" + } + ] } }, "item": { @@ -212,7 +230,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-item" + } + ] } } } diff --git a/api/SpeechRecognitionResultList.json b/api/SpeechRecognitionResultList.json index 1d08c8d8e828ac..eff4c0684f495e 100644 --- a/api/SpeechRecognitionResultList.json +++ b/api/SpeechRecognitionResultList.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechreco-resultlist" + } + ] }, "item": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-speechrecognitionresultlistitem" + } + ] } }, "length": { @@ -158,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-speechrecognitionresultlistlength" + } + ] } } } diff --git a/api/SpeechSynthesis.json b/api/SpeechSynthesis.json index fba7d66687f1ac..eb0d697876e2f4 100644 --- a/api/SpeechSynthesis.json +++ b/api/SpeechSynthesis.json @@ -58,7 +58,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#tts-section" + } + ] }, "cancel": { "__compat": { @@ -118,7 +124,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-ttscancel" + } + ] } }, "getVoices": { @@ -179,7 +191,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-ttsgetvoices" + } + ] } }, "onvoiceschanged": { @@ -240,7 +258,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-ttsonvoiceschanged" + } + ] } }, "pause": { @@ -301,7 +325,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-ttspause" + } + ] } }, "paused": { @@ -362,7 +392,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-ttspaused" + } + ] } }, "pending": { @@ -423,7 +459,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-ttspending" + } + ] } }, "resume": { @@ -484,7 +526,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-ttsresume" + } + ] } }, "speak": { @@ -545,7 +593,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-ttsspeak" + } + ] } }, "speaking": { @@ -606,7 +660,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-ttsspeaking" + } + ] } } } diff --git a/api/SpeechSynthesisErrorEvent.json b/api/SpeechSynthesisErrorEvent.json index bfbb9d3d579285..d02e1abfe90417 100644 --- a/api/SpeechSynthesisErrorEvent.json +++ b/api/SpeechSynthesisErrorEvent.json @@ -58,7 +58,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechsynthesiserrorevent" + } + ] }, "error": { "__compat": { @@ -118,7 +124,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-sse.error" + } + ] } } } diff --git a/api/SpeechSynthesisEvent.json b/api/SpeechSynthesisEvent.json index 25fa93603622cb..9c9182ee7cbd09 100644 --- a/api/SpeechSynthesisEvent.json +++ b/api/SpeechSynthesisEvent.json @@ -58,7 +58,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechsynthesisevent" + } + ] }, "charIndex": { "__compat": { @@ -118,7 +124,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-callbackcharindex" + } + ] } }, "elapsedTime": { @@ -179,7 +191,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-callbackelapsedtime" + } + ] } }, "name": { @@ -240,7 +258,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-callbackname" + } + ] } }, "utterance": { @@ -301,7 +325,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-callbackutterance" + } + ] } } } diff --git a/api/SpeechSynthesisUtterance.json b/api/SpeechSynthesisUtterance.json index 162f691c89e11e..72956ebf07e792 100644 --- a/api/SpeechSynthesisUtterance.json +++ b/api/SpeechSynthesisUtterance.json @@ -58,7 +58,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#utterance-attributes" + } + ] }, "SpeechSynthesisUtterance": { "__compat": { @@ -119,7 +125,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#tts-section" + } + ] } }, "lang": { @@ -180,7 +192,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utterancelang" + } + ] } }, "onboundary": { @@ -241,7 +259,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utteranceonboundary" + } + ] } }, "onend": { @@ -302,7 +326,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utteranceonend" + } + ] } }, "onerror": { @@ -363,7 +393,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utteranceonerror" + } + ] } }, "onmark": { @@ -424,7 +460,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utteranceonmark" + } + ] } }, "onpause": { @@ -485,7 +527,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utteranceonpause" + } + ] } }, "onresume": { @@ -546,7 +594,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utteranceonresume" + } + ] } }, "onstart": { @@ -607,7 +661,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utteranceonstart" + } + ] } }, "pitch": { @@ -668,7 +728,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utterancepitch" + } + ] } }, "rate": { @@ -729,7 +795,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utterancerate" + } + ] } }, "text": { @@ -790,7 +862,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utterancetext" + } + ] } }, "voice": { @@ -851,7 +929,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utterancevoice" + } + ] } }, "volume": { @@ -912,7 +996,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-utterancevolume" + } + ] } } } diff --git a/api/SpeechSynthesisVoice.json b/api/SpeechSynthesisVoice.json index ba7bdf66ac5f7c..9c1bcb6d4fdc9d 100644 --- a/api/SpeechSynthesisVoice.json +++ b/api/SpeechSynthesisVoice.json @@ -58,7 +58,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#speechsynthesisvoice" + } + ] }, "default": { "__compat": { @@ -118,7 +124,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-voicedefault" + } + ] } }, "lang": { @@ -179,7 +191,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-voicelang" + } + ] } }, "localService": { @@ -240,7 +258,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-voicelocalservice" + } + ] } }, "name": { @@ -301,7 +325,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-voicename" + } + ] } }, "voiceURI": { @@ -362,7 +392,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#dfn-voicevoiceuri" + } + ] } } } diff --git a/api/StaticRange.json b/api/StaticRange.json index 297a9707d83f38..0aceb466eabfcf 100644 --- a/api/StaticRange.json +++ b/api/StaticRange.json @@ -48,7 +48,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-staticrange" + }, + { + "name": "Static Range", + "url": "https://w3c.github.io/staticrange/index.html#interface-staticrange" + } + ] }, "StaticRange": { "__compat": { @@ -99,7 +109,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Static Range", + "url": "https://w3c.github.io/staticrange/index.html#dom-staticrange-staticrange-initdict-initdict" + } + ] } }, "startContainer": { @@ -150,7 +166,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Static Range", + "url": "https://w3c.github.io/staticrange/index.html#dom-staticrange-startcontainer" + } + ] } }, "startOffset": { @@ -201,7 +223,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Static Range", + "url": "https://w3c.github.io/staticrange/index.html#dom-staticrange-startoffset" + } + ] } }, "endContainer": { @@ -252,7 +280,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Static Range", + "url": "https://w3c.github.io/staticrange/index.html#dom-staticrange-endcontainer" + } + ] } }, "endOffset": { @@ -303,7 +337,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Static Range", + "url": "https://w3c.github.io/staticrange/index.html#dom-staticrange-endoffset" + } + ] } }, "collapsed": { @@ -354,7 +394,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Static Range", + "url": "https://w3c.github.io/staticrange/index.html#dom-staticrange-collapsed" + } + ] } }, "toRange": { @@ -405,7 +451,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Static Range", + "url": "https://w3c.github.io/staticrange/index.html#dom-staticrange-torange" + } + ] } } } diff --git a/api/StereoPannerNode.json b/api/StereoPannerNode.json index 9aab9076b5c4cd..d61d59105657a8 100644 --- a/api/StereoPannerNode.json +++ b/api/StereoPannerNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-stereopannernode-interface" + } + ] }, "StereoPannerNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-stereopannernode-interface" + } + ] } }, "pan": { @@ -153,7 +165,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-StereoPannerNode-pan" + } + ] } } } diff --git a/api/Storage.json b/api/Storage.json index c83931975d9fc7..f974ca5fbd6012 100644 --- a/api/Storage.json +++ b/api/Storage.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webstorage.html#the-storage-interface" + } + ] }, "clear": { "__compat": { @@ -92,7 +98,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webstorage.html#dom-storage-clear" + } + ] } }, "getItem": { @@ -140,7 +152,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webstorage.html#dom-storage-getitem" + } + ] } }, "key": { @@ -188,7 +206,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webstorage.html#dom-storage-key" + } + ] } }, "length": { @@ -236,7 +260,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webstorage.html#dom-storage-length" + } + ] } }, "removeItem": { @@ -284,7 +314,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webstorage.html#dom-storage-removeitem" + } + ] } }, "setItem": { @@ -332,7 +368,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webstorage.html#dom-storage-setitem" + } + ] } } } diff --git a/api/StorageEstimate.json b/api/StorageEstimate.json index 20c2916c7019ba..4237fe354bcad1 100644 --- a/api/StorageEstimate.json +++ b/api/StorageEstimate.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Storage", + "url": "https://storage.spec.whatwg.org/#dictdef-storageestimate" + } + ] }, "quota": { "__compat": { @@ -92,7 +98,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Storage", + "url": "https://storage.spec.whatwg.org/#site-storage-quota" + } + ] } }, "usage": { @@ -140,7 +152,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Storage", + "url": "https://storage.spec.whatwg.org/#site-storage-usage" + } + ] } } } diff --git a/api/StorageManager.json b/api/StorageManager.json index d384df043dcf58..c3d30c6e95610f 100644 --- a/api/StorageManager.json +++ b/api/StorageManager.json @@ -70,7 +70,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Storage", + "url": "https://storage.spec.whatwg.org/#storagemanager" + } + ] }, "estimate": { "__compat": { @@ -120,7 +126,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Storage", + "url": "https://storage.spec.whatwg.org/#dom-storagemanager-estimate" + } + ] } }, "persist": { @@ -192,7 +204,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Storage", + "url": "https://storage.spec.whatwg.org/#dom-storagemanager-persist" + } + ] } }, "persisted": { @@ -264,7 +282,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Storage", + "url": "https://storage.spec.whatwg.org/#dom-storagemanager-persisted" + } + ] } } } diff --git a/api/StylePropertyMap.json b/api/StylePropertyMap.json index dcab17103d5d1a..531ec930a0c815 100644 --- a/api/StylePropertyMap.json +++ b/api/StylePropertyMap.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#stylepropertymap" + } + ] }, "append": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-append" + } + ] } }, "clear": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-clear" + } + ] } }, "delete": { @@ -200,7 +218,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-delete" + } + ] } }, "set": { @@ -251,7 +275,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-set" + } + ] } } } diff --git a/api/StylePropertyMapReadOnly.json b/api/StylePropertyMapReadOnly.json index c7d6d90b1aee6f..e34b4a59aeaecc 100644 --- a/api/StylePropertyMapReadOnly.json +++ b/api/StylePropertyMapReadOnly.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#stylepropertymapreadonly" + } + ] }, "@@iterator": { "__compat": { @@ -149,7 +155,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#the-stylepropertymap" + } + ] } }, "forEach": { @@ -200,7 +212,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#the-stylepropertymap" + } + ] } }, "get": { @@ -251,7 +269,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymapreadonly-get" + } + ] } }, "getAll": { @@ -302,7 +326,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymapreadonly-getall" + } + ] } }, "has": { @@ -353,7 +383,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymapreadonly-has" + } + ] } }, "keys": { @@ -404,7 +440,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#the-stylepropertymap" + } + ] } }, "size": { @@ -455,7 +497,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymapreadonly-size" + } + ] } }, "values": { @@ -506,7 +554,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Typed OM", + "url": "https://drafts.css-houdini.org/css-typed-om-1/#the-stylepropertymap" + } + ] } } } diff --git a/api/StyleSheet.json b/api/StyleSheet.json index 77657a43bb84a6..2c868427c7fe79 100644 --- a/api/StyleSheet.json +++ b/api/StyleSheet.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#stylesheet" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet" + } + ] }, "disabled": { "__compat": { @@ -92,7 +102,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-stylesheet-disabled" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet-disabled" + } + ] } }, "href": { diff --git a/api/StyleSheetList.json b/api/StyleSheetList.json index 1322bc8f3cc62e..cdf0336e011a9f 100644 --- a/api/StyleSheetList.json +++ b/api/StyleSheetList.json @@ -45,7 +45,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#the-stylesheetlist-interface" + } + ] }, "item": { "__compat": { diff --git a/api/SubtleCrypto.json b/api/SubtleCrypto.json index fca63868d32913..37d88c45ea79b9 100644 --- a/api/SubtleCrypto.json +++ b/api/SubtleCrypto.json @@ -87,7 +87,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#subtlecrypto-interface" + } + ] }, "encrypt": { "__compat": { @@ -165,7 +171,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-encrypt" + } + ] } }, "decrypt": { @@ -244,7 +256,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#SubtleCrypto-method-decrypt" + } + ] } }, "sign": { @@ -323,7 +341,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-sign" + } + ] } }, "verify": { @@ -402,7 +426,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-verify" + } + ] } }, "digest": { @@ -481,7 +511,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-digest" + } + ] } }, "generateKey": { @@ -560,7 +596,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-generateKey" + } + ] } }, "deriveKey": { @@ -637,7 +679,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-deriveKey" + } + ] } }, "deriveBits": { @@ -793,7 +841,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-importKey" + } + ] } }, "exportKey": { @@ -872,7 +926,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-exportKey" + } + ] } }, "wrapKey": { @@ -951,7 +1011,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-wrapKey" + } + ] } }, "unwrapKey": { @@ -1027,7 +1093,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-SubtleCrypto-method-unwrapKey" + } + ] } } } diff --git a/api/SyncEvent.json b/api/SyncEvent.json index e08f6316958701..a4ae57e0f73333 100644 --- a/api/SyncEvent.json +++ b/api/SyncEvent.json @@ -150,7 +150,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Background Sync", + "url": "https://wicg.github.io/BackgroundSync/spec/#sync-event" + } + ] } }, "lastChance": { @@ -201,7 +207,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Background Sync", + "url": "https://wicg.github.io/BackgroundSync/spec/#sync-event" + } + ] } } } diff --git a/api/SyncManager.json b/api/SyncManager.json index ac725cd93f6219..1eb29042fa0f39 100644 --- a/api/SyncManager.json +++ b/api/SyncManager.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Background Sync", + "url": "https://wicg.github.io/BackgroundSync/spec/#sync-manager-interface" + } + ] }, "worker_support": { "__compat": { diff --git a/api/TaskAttributionTiming.json b/api/TaskAttributionTiming.json index 42568a1a7fbe3f..6738f8ed65da9c 100644 --- a/api/TaskAttributionTiming.json +++ b/api/TaskAttributionTiming.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Long Tasks", + "url": "https://w3c.github.io/longtasks/#sec-TaskAttributionTiming" + } + ] }, "containerId": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Long Tasks", + "url": "https://w3c.github.io/longtasks/#dom-taskattributiontiming-containerid" + } + ] } }, "containerName": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Long Tasks", + "url": "https://w3c.github.io/longtasks/#dom-taskattributiontiming-containername" + } + ] } }, "containerSrc": { @@ -200,7 +218,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Long Tasks", + "url": "https://w3c.github.io/longtasks/#dom-taskattributiontiming-containersrc" + } + ] } }, "containerType": { @@ -251,7 +275,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Long Tasks", + "url": "https://w3c.github.io/longtasks/#dom-taskattributiontiming-containertype" + } + ] } } } diff --git a/api/Text.json b/api/Text.json index cf8cd3e688023c..2550068a666582 100644 --- a/api/Text.json +++ b/api/Text.json @@ -39,7 +39,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#text" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1312295772" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1312295772" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-1312295772" + } + ] }, "Text": { "__compat": { @@ -81,7 +99,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#text" + } + ] } }, "isElementContentWhitespace": { @@ -167,7 +191,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-text-wholetext" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#Text3-wholeText" + } + ] } }, "assignedSlot": { @@ -218,7 +252,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-slotable-assignedslot" + } + ] } }, "replaceWholeText": { @@ -333,7 +373,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-text-splittext" + }, + { + "name": "DOM3 Core", + "url": "https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-38853C1D" + }, + { + "name": "DOM2 Core", + "url": "https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-38853C1D" + }, + { + "name": "DOM1", + "url": "https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-38853C1D" + } + ] } } } diff --git a/api/TextDecoder.json b/api/TextDecoder.json index 422850649ef871..975ba3bf0b1e44 100644 --- a/api/TextDecoder.json +++ b/api/TextDecoder.json @@ -62,7 +62,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Encoding", + "url": "https://encoding.spec.whatwg.org/#interface-textdecoder" + } + ] }, "worker_support": { "__compat": { @@ -178,7 +184,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Encoding", + "url": "https://encoding.spec.whatwg.org/#dom-textdecoder" + } + ] } }, "decode": { @@ -243,7 +255,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Encoding", + "url": "https://encoding.spec.whatwg.org/#dom-textdecoder-decode" + } + ] } }, "encoding": { @@ -308,7 +326,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Encoding", + "url": "https://encoding.spec.whatwg.org/#dom-textdecoder-encoding" + } + ] } }, "fatal": { diff --git a/api/TextEncoder.json b/api/TextEncoder.json index 573ee3254e0512..c65bb70f7b5f8d 100644 --- a/api/TextEncoder.json +++ b/api/TextEncoder.json @@ -60,7 +60,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Encoding", + "url": "https://encoding.spec.whatwg.org/#interface-textencoder" + } + ] }, "worker_support": { "__compat": { @@ -204,7 +210,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Encoding", + "url": "https://encoding.spec.whatwg.org/#dom-textencoder" + } + ] } }, "encoding": { @@ -267,7 +279,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Encoding", + "url": "https://encoding.spec.whatwg.org/#dom-textencoder-encoding" + } + ] } }, "encode": { @@ -330,7 +348,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Encoding", + "url": "https://encoding.spec.whatwg.org/#dom-textencoder-encode" + } + ] } } } diff --git a/api/TextMetrics.json b/api/TextMetrics.json index 80325a34602bd6..883a356638de1c 100644 --- a/api/TextMetrics.json +++ b/api/TextMetrics.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/the-canvas-element.html#textmetrics" + } + ] }, "width": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#dom-textmetrics-width" + } + ] } }, "advanced_text_metrics": { diff --git a/api/TextTrack.json b/api/TextTrack.json index 14d457331f6349..072c409c43c14b 100644 --- a/api/TextTrack.json +++ b/api/TextTrack.json @@ -461,7 +461,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVTT", + "url": "https://w3c.github.io/webvtt/#dom-texttrack-mode" + } + ] } }, "oncuechange": { diff --git a/api/TimeRanges.json b/api/TimeRanges.json index 028e58a14fdc83..f34093ccddc22b 100644 --- a/api/TimeRanges.json +++ b/api/TimeRanges.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#time-ranges" + } + ] }, "end": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-timeranges-end" + } + ] } }, "length": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-timeranges-length" + } + ] } }, "start": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#dom-timeranges-start" + } + ] } } } diff --git a/api/Touch.json b/api/Touch.json index bcff9f3153772b..76e8dc8075a645 100644 --- a/api/Touch.json +++ b/api/Touch.json @@ -56,7 +56,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#touch-interface" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#touch-interface" + } + ] }, "Touch": { "__compat": { @@ -107,7 +117,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#touchevent-interface" + } + ] } }, "clientX": { @@ -166,7 +182,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-clientX" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-Touch-clientX" + } + ] } }, "clientY": { @@ -225,7 +251,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-clientY" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-Touch-clientY" + } + ] } }, "force": { @@ -276,7 +312,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-force" + } + ] } }, "identifier": { @@ -335,7 +377,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-identifier" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-Touch-identifier" + } + ] } }, "pageX": { @@ -394,7 +446,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-pageX" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-Touch-pageX" + } + ] } }, "pageY": { @@ -453,7 +515,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-pageY" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-Touch-pageY" + } + ] } }, "radiusX": { @@ -504,7 +576,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-radiusX" + } + ] } }, "radiusY": { @@ -555,7 +633,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-radiusY" + } + ] } }, "rotationAngle": { @@ -606,7 +690,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-rotationAngle" + } + ] } }, "screenX": { @@ -665,7 +755,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-screenX" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-Touch-screenX" + } + ] } }, "screenY": { @@ -724,7 +824,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-screenY" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-Touch-screenY" + } + ] } }, "target": { @@ -783,7 +893,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-Touch-target" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-Touch-target" + } + ] } } } diff --git a/api/TouchEvent.json b/api/TouchEvent.json index b0f619811b8e80..fc1e4f896d7eda 100644 --- a/api/TouchEvent.json +++ b/api/TouchEvent.json @@ -62,7 +62,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#touchevent-interface" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#touchevent-interface" + } + ] }, "TouchEvent": { "__compat": { @@ -116,7 +126,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#touchevent-interface" + } + ] } }, "altKey": { @@ -173,7 +189,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-TouchEvent-altKey" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-TouchEvent-altKey" + } + ] } }, "changedTouches": { @@ -230,7 +256,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-TouchEvent-changedTouches" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-TouchEvent-changedTouches" + } + ] } }, "ctrlKey": { @@ -287,7 +323,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-TouchEvent-ctrlKey" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-TouchEvent-ctrlKey" + } + ] } }, "metaKey": { @@ -344,7 +390,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-TouchEvent-metaKey" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-TouchEvent-metaKey" + } + ] } }, "shiftKey": { @@ -401,7 +457,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-TouchEvent-shiftKey" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-TouchEvent-shiftKey" + } + ] } }, "targetTouches": { @@ -458,7 +524,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-TouchEvent-targetTouches" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-TouchEvent-targetTouches" + } + ] } }, "touches": { @@ -515,7 +591,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-TouchEvent-touches" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-TouchEvent-touches" + } + ] } } } diff --git a/api/TouchList.json b/api/TouchList.json index 1f092fd408cc0e..738a9985b4a914 100644 --- a/api/TouchList.json +++ b/api/TouchList.json @@ -51,7 +51,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#touchlist-interface" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#touchlist-interface" + } + ] }, "length": { "__compat": { @@ -104,7 +114,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-TouchList-length" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-TouchList-length" + } + ] } }, "identifiedTouch": { @@ -206,7 +226,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Touch Events 2", + "url": "https://w3c.github.io/touch-events/#widl-TouchList-item-getter-Touch-unsigned-long-index" + }, + { + "name": "Touch Events", + "url": "https://www.w3.org/TR/touch-events/#widl-TouchList-item-getter-Touch-unsigned-long-index" + } + ] } } } diff --git a/api/TrackDefault.json b/api/TrackDefault.json index 03ab22b061a6de..595fb791b3ba63 100644 --- a/api/TrackDefault.json +++ b/api/TrackDefault.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#trackdefault" + } + ] }, "TrackDefault": { "__compat": { @@ -93,7 +99,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-ctor-TrackDefault--TrackDefaultType-type-DOMString-language-DOMString-label-sequence-DOMString--kinds-DOMString-byteStreamTrackID" + } + ] } }, "byteStreamTrackID": { @@ -141,7 +153,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-TrackDefault-byteStreamTrackID" + } + ] } }, "kinds": { @@ -189,7 +207,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-TrackDefault-kinds" + } + ] } }, "label": { @@ -237,7 +261,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-TrackDefault-label" + } + ] } }, "language": { @@ -285,7 +315,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-TrackDefault-language" + } + ] } }, "type": { @@ -333,7 +369,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-TrackDefault-type" + } + ] } } } diff --git a/api/TrackDefaultList.json b/api/TrackDefaultList.json index da24a0a9a589d1..478c4c4e6cf7c2 100644 --- a/api/TrackDefaultList.json +++ b/api/TrackDefaultList.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#trackdefaultlist" + } + ] }, "TrackDefaultList": { "__compat": { @@ -93,7 +99,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-ctor-TrackDefaultList--sequence-TrackDefault--trackDefaults" + } + ] } }, "length": { @@ -141,7 +153,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-TrackDefaultList-length" + } + ] } }, "TrackDefault": { @@ -189,7 +207,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-TrackDefaultList-TrackDefault-getter-unsigned-long-index" + } + ] } } } diff --git a/api/Transferable.json b/api/Transferable.json index a44cca7a06c203..1a16584dada9a1 100644 --- a/api/Transferable.json +++ b/api/Transferable.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/infrastructure.html#transferable-objects" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/infrastructure.html#transferable-objects" + } + ] } } } diff --git a/api/TransitionEvent.json b/api/TransitionEvent.json index 20597518a77fcd..050947a5365dd8 100644 --- a/api/TransitionEvent.json +++ b/api/TransitionEvent.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#Events-TransitionEvent" + } + ] }, "TransitionEvent": { "__compat": { @@ -93,7 +99,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#Events-TransitionEvent" + } + ] } }, "animationName": { @@ -141,7 +153,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#Events-TransitionEvent-propertyName" + } + ] } }, "propertyName": { @@ -237,7 +255,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#Events-TransitionEvent-elapsedTime" + } + ] } }, "pseudoElement": { @@ -285,7 +309,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#Events-TransitionEvent-pseudoElement" + } + ] } }, "initTransitionEvent": { diff --git a/api/TreeWalker.json b/api/TreeWalker.json index 6abd35e78370b7..752c3355691f2b 100644 --- a/api/TreeWalker.json +++ b/api/TreeWalker.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#interface-treewalker" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker" + } + ] }, "currentNode": { "__compat": { @@ -92,7 +102,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-currentnode" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-currentNode" + } + ] } }, "expandEntityReferences": { @@ -190,7 +210,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-filter" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-filter" + } + ] } }, "root": { @@ -238,7 +268,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-root" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-root" + } + ] } }, "whatToShow": { @@ -286,7 +326,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-whattoshow" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-whatToShow" + } + ] } }, "firstChild": { @@ -334,7 +384,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-firstchild" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-firstChild" + } + ] } }, "lastChild": { @@ -382,7 +442,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-lastchild" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-lastChild" + } + ] } }, "nextNode": { @@ -430,7 +500,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-nextnode" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-nextNode" + } + ] } }, "nextSibling": { @@ -478,7 +558,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-nextsibling" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-nextSibling" + } + ] } }, "parentNode": { @@ -526,7 +616,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-parentnode" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-parentNode" + } + ] } }, "previousNode": { @@ -574,7 +674,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-previousnode" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-previousNode" + } + ] } }, "previousSibling": { @@ -622,7 +732,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-treewalker-previoussibling" + }, + { + "name": "DOM2 Traversal_Range", + "url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-previousSibling" + } + ] } } } diff --git a/api/UIEvent.json b/api/UIEvent.json index eca423e1d4c3de..98cee334473509 100644 --- a/api/UIEvent.json +++ b/api/UIEvent.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#interface-UIEvent" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-UIEvent" + } + ] }, "UIEvent": { "__compat": { @@ -99,7 +109,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#interface-UIEvent" + } + ] } }, "cancelBubble": { @@ -252,7 +268,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-UIEvent-detail" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-UIEvent-detail" + } + ] } }, "initUIEvent": { @@ -625,7 +651,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "InputDeviceCapabilities", + "url": "https://wicg.github.io/InputDeviceCapabilities/#dom-uievent-sourcecapabilities" + } + ] } }, "view": { @@ -676,7 +708,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#interface-UIEvent" + }, + { + "name": "DOM2 Events", + "url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-UIEvent" + } + ] } }, "which": { diff --git a/api/URL.json b/api/URL.json index 364fd4602481dd..5443c2a2e2d4eb 100644 --- a/api/URL.json +++ b/api/URL.json @@ -112,7 +112,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#creating-revoking" + }, + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#api" + } + ] }, "URL": { "__compat": { @@ -164,7 +174,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#constructors" + } + ] } }, "createObjectURL": { @@ -217,7 +233,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#dfn-createObjectURL" + }, + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#dom-url-createobjecturl" + } + ] }, "no_MediaStream_argument": { "__compat": { @@ -325,7 +351,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-hash" + } + ] } }, "host": { @@ -376,7 +408,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-host" + } + ] } }, "hostname": { @@ -427,7 +465,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-hostname" + } + ] } }, "href": { @@ -478,7 +522,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-href" + } + ] } }, "origin": { @@ -559,7 +609,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-origin" + } + ] } }, "password": { @@ -616,7 +672,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-password" + } + ] } }, "pathname": { @@ -681,7 +743,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-pathname" + } + ] } }, "port": { @@ -732,7 +800,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-port" + } + ] } }, "protocol": { @@ -783,7 +857,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-protocol" + } + ] } }, "revokeObjectURL": { @@ -836,7 +916,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "File API", + "url": "https://w3c.github.io/FileAPI/#dfn-revokeObjectURL" + } + ] } }, "search": { @@ -901,7 +987,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-search" + } + ] } }, "searchParams": { @@ -952,7 +1044,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-searchparams" + } + ] } }, "toJSON": { @@ -1003,7 +1101,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-tojson" + } + ] } }, "username": { @@ -1060,7 +1164,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-hyperlink-username" + } + ] } } } diff --git a/api/URLSearchParams.json b/api/URLSearchParams.json index 8354000446d12c..55e8ee2ebdcd76 100644 --- a/api/URLSearchParams.json +++ b/api/URLSearchParams.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#urlsearchparams" + } + ] }, "URLSearchParams": { "__compat": { @@ -203,7 +209,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-urlsearchparams-append" + } + ] } }, "delete": { @@ -254,7 +266,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-urlsearchparams-delete" + } + ] } }, "entries": { @@ -305,7 +323,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#urlsearchparams" + } + ] } }, "get": { @@ -356,7 +380,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-urlsearchparams-get" + } + ] } }, "getAll": { @@ -407,7 +437,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-urlsearchparams-getall" + } + ] } }, "has": { @@ -458,7 +494,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-urlsearchparams-has" + } + ] } }, "keys": { @@ -509,7 +551,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#urlsearchparams" + } + ] } }, "set": { @@ -560,7 +608,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-urlsearchparams-set" + } + ] } }, "sort": { @@ -611,7 +665,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#urlsearchparams" + } + ] } }, "toString": { @@ -662,7 +722,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#urlsearchparams-stringification-behavior" + } + ] } }, "values": { @@ -713,7 +779,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#urlsearchparams" + } + ] } } } diff --git a/api/URLUtilsReadOnly.json b/api/URLUtilsReadOnly.json index 2550dae7e98822..495a03f47e0053 100644 --- a/api/URLUtilsReadOnly.json +++ b/api/URLUtilsReadOnly.json @@ -64,7 +64,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#urlutilsreadonly" + } + ] }, "hash": { "__compat": { @@ -130,7 +136,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-hash" + } + ] } }, "host": { @@ -181,7 +193,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-host" + } + ] } }, "hostname": { @@ -232,7 +250,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-hostname" + } + ] } }, "href": { @@ -283,7 +307,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-href" + } + ] } }, "origin": { @@ -334,7 +364,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-origin" + } + ] } }, "pathname": { @@ -385,7 +421,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-pathname" + } + ] } }, "port": { @@ -436,7 +478,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-port" + } + ] } }, "protocol": { @@ -487,7 +535,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-protocol" + } + ] } }, "search": { @@ -538,7 +592,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#dom-url-search" + } + ] } }, "toString": { @@ -589,7 +649,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "URL", + "url": "https://url.spec.whatwg.org/#urlutilsreadonly" + } + ] } } } diff --git a/api/USB.json b/api/USB.json index 6f47d28ec4bb36..6f0fb926e22d57 100644 --- a/api/USB.json +++ b/api/USB.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#enumeration" + } + ] }, "onconnect": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usb-onconnect" + } + ] } }, "ondisconnect": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usb-ondisconnect" + } + ] } }, "getDevices": { @@ -200,7 +218,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usb-getdevices" + } + ] } }, "requestDevice": { @@ -251,7 +275,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usb-requestdevice-options-options" + } + ] } } } diff --git a/api/USBDevice.json b/api/USBDevice.json index 34823839dd5f85..759eb9ebbc24d5 100644 --- a/api/USBDevice.json +++ b/api/USBDevice.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#device-usage" + } + ] }, "usbVersionMajor": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-usbversionmajor" + } + ] } }, "usbVersionMinor": { @@ -149,7 +161,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-usbversionminor" + } + ] } }, "usbVersionSubminor": { @@ -200,7 +218,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-usbversionsubminor" + } + ] } }, "deviceClass": { @@ -251,7 +275,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-deviceclass" + } + ] } }, "deviceSubclass": { @@ -302,7 +332,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-devicesubclass" + } + ] } }, "deviceProtocol": { @@ -353,7 +389,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-deviceprotocol" + } + ] } }, "vendorId": { @@ -404,7 +446,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-vendorid" + } + ] } }, "productId": { @@ -455,7 +503,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-productid" + } + ] } }, "deviceVersionMajor": { @@ -506,7 +560,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-deviceversionmajor" + } + ] } }, "deviceVersionMinor": { @@ -557,7 +617,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-deviceversionminor" + } + ] } }, "deviceVersionSubminor": { @@ -608,7 +674,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-deviceversionsubminor" + } + ] } }, "manufacturerName": { @@ -659,7 +731,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-manufacturername" + } + ] } }, "productName": { @@ -710,7 +788,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-productname" + } + ] } }, "serialNumber": { @@ -761,7 +845,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-serialnumber" + } + ] } }, "configuration": { @@ -812,7 +902,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-configuration" + } + ] } }, "configurations": { @@ -863,7 +959,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-configurations" + } + ] } }, "opened": { @@ -914,7 +1016,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-opened" + } + ] } }, "open": { @@ -965,7 +1073,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-open" + } + ] } }, "close": { @@ -1016,7 +1130,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-close" + } + ] } }, "selectConfiguration": { @@ -1067,7 +1187,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-selectconfiguration" + } + ] } }, "claimInterface": { @@ -1118,7 +1244,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-claiminterface" + } + ] } }, "releaseInterface": { @@ -1169,7 +1301,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-releaseinterface" + } + ] } }, "selectAlternateInterface": { @@ -1220,7 +1358,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-selectalternateinterface" + } + ] } }, "controlTransferIn": { @@ -1271,7 +1415,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-controltransferin" + } + ] } }, "controlTransferOut": { @@ -1322,7 +1472,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-controltransferout" + } + ] } }, "clearHalt": { @@ -1373,7 +1529,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-clearhalt" + } + ] } }, "transferIn": { @@ -1424,7 +1586,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-transferin" + } + ] } }, "transferOut": { @@ -1475,7 +1643,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-transferout" + } + ] } }, "isochronousTransferIn": { @@ -1526,7 +1700,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-isochronoustransferin" + } + ] } }, "isochronousTransferOut": { @@ -1577,7 +1757,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-isochronoustransferout" + } + ] } }, "reset": { @@ -1628,7 +1814,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web USB", + "url": "https://wicg.github.io/webusb/#dom-usbdevice-reset" + } + ] } } } diff --git a/api/UserProximityEvent.json b/api/UserProximityEvent.json index fdc4955e518da0..9f687122f49442 100644 --- a/api/UserProximityEvent.json +++ b/api/UserProximityEvent.json @@ -151,7 +151,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Proximity Events", + "url": "https://w3c.github.io/proximity/#user-proximity" + } + ] } } } diff --git a/api/VRDisplay.json b/api/VRDisplay.json index 46f86bbda0ddfc..0aaf8dac2366c7 100644 --- a/api/VRDisplay.json +++ b/api/VRDisplay.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#interface-vrdisplay" + } + ] }, "cancelAnimationFrame": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-cancelanimationframe" + } + ] } }, "capabilities": { @@ -158,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-capabilities" + } + ] } }, "depthFar": { @@ -212,7 +230,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-depthfar" + } + ] } }, "depthNear": { @@ -266,7 +290,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-depthnear" + } + ] } }, "displayId": { @@ -320,7 +350,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-displayid" + } + ] } }, "displayName": { @@ -374,7 +410,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-displayname" + } + ] } }, "exitPresent": { @@ -428,7 +470,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-exitpresent" + } + ] } }, "getEyeParameters": { @@ -482,7 +530,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-geteyeparameters" + } + ] } }, "getFrameData": { @@ -536,7 +590,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-geteyeparameters" + } + ] } }, "getLayers": { @@ -590,7 +650,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-getlayers" + } + ] } }, "getImmediatePose": { @@ -831,7 +897,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-ispresenting" + } + ] } }, "requestAnimationFrame": { @@ -885,7 +957,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-requestanimationframe" + } + ] } }, "resetPose": { @@ -993,7 +1071,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-requestpresent" + } + ] } }, "stageParameters": { @@ -1047,7 +1131,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-stageparameters" + } + ] } }, "submitFrame": { @@ -1101,7 +1191,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplay-submitframe" + } + ] } } } diff --git a/api/VRDisplayCapabilities.json b/api/VRDisplayCapabilities.json index 59b3dc31776594..26c04813379f25 100644 --- a/api/VRDisplayCapabilities.json +++ b/api/VRDisplayCapabilities.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#interface-vrdisplaycapabilities" + } + ] }, "canPresent": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplaycapabilities-canpresent" + } + ] } }, "hasExternalDisplay": { @@ -158,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplaycapabilities-hasexternaldisplay" + } + ] } }, "hasPosition": { @@ -212,7 +230,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplaycapabilities-hasposition" + } + ] } }, "hasOrientation": { @@ -320,7 +344,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplaycapabilities-maxlayers" + } + ] } } } diff --git a/api/VRDisplayEvent.json b/api/VRDisplayEvent.json index 15938c57bee0b8..b22620ee867bf8 100644 --- a/api/VRDisplayEvent.json +++ b/api/VRDisplayEvent.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#interface-vrdisplayevent" + } + ] }, "VRDisplayEvent": { "__compat": { @@ -105,7 +111,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#interface-vrdisplayevent" + } + ] } }, "display": { @@ -159,7 +171,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplayeventinit-display" + } + ] } }, "reason": { @@ -213,7 +231,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrdisplayeventinit-reason" + } + ] } } } diff --git a/api/VREyeParameters.json b/api/VREyeParameters.json index 155f9112f0a3b5..2cc2bff93f63d8 100644 --- a/api/VREyeParameters.json +++ b/api/VREyeParameters.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#vreyeparameters" + } + ] }, "fieldOfView": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vreyeparameters-fieldofview" + } + ] } }, "maximumFieldOfView": { @@ -244,7 +256,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vreyeparameters-offset" + } + ] } }, "recommendedFieldOfView": { @@ -334,7 +352,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vreyeparameters-renderheight" + } + ] } }, "renderRect": { @@ -424,7 +448,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vreyeparameters-renderwidth" + } + ] } } } diff --git a/api/VRFieldOfView.json b/api/VRFieldOfView.json index 6a3a6d9ba6d23e..e00a9f8703a640 100644 --- a/api/VRFieldOfView.json +++ b/api/VRFieldOfView.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#interface-interface-vrfieldofview" + } + ] }, "VRFieldOfView": { "__compat": { @@ -141,7 +147,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrfieldofview-downdegrees" + } + ] } }, "leftDegrees": { @@ -195,7 +207,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrfieldofview-leftdegrees" + } + ] } }, "rightDegrees": { @@ -249,7 +267,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrfieldofview-rightdegrees" + } + ] } }, "upDegrees": { @@ -303,7 +327,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrfieldofview-updegrees" + } + ] } } } diff --git a/api/VRFrameData.json b/api/VRFrameData.json index 9dfbe8b8d0e8ce..f1044b4513a8c8 100644 --- a/api/VRFrameData.json +++ b/api/VRFrameData.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#interface-vrdisplayevent" + } + ] }, "VRFrameData": { "__compat": { @@ -105,7 +111,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrframedata-vrframedata" + } + ] } }, "leftProjectionMatrix": { @@ -159,7 +171,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrframedata-leftprojectionmatrix" + } + ] } }, "leftViewMatrix": { @@ -213,7 +231,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrframedata-leftviewmatrix" + } + ] } }, "pose": { @@ -267,7 +291,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrframedata-pose" + } + ] } }, "rightProjectionMatrix": { @@ -321,7 +351,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrframedata-rightprojectionmatrix" + } + ] } }, "rightViewMatrix": { @@ -375,7 +411,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrframedata-rightviewmatrix" + } + ] } }, "timestamp": { @@ -429,7 +471,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrframedata-timestamp" + } + ] } } } diff --git a/api/VRLayerInit.json b/api/VRLayerInit.json index 71a7a9466aa7f4..fc644058b8812c 100644 --- a/api/VRLayerInit.json +++ b/api/VRLayerInit.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#interface-vrlayerinit" + } + ] }, "leftBounds": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrlayerinit-leftbounds" + } + ] } }, "rightBounds": { @@ -158,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrlayerinit-rightbounds" + } + ] } }, "source": { @@ -212,7 +230,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrlayerinit-source" + } + ] } } } diff --git a/api/VRPose.json b/api/VRPose.json index c6646763bddc19..a41eccf6d31707 100644 --- a/api/VRPose.json +++ b/api/VRPose.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#interface-vrpose" + } + ] }, "angularAcceleration": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrpose-angularacceleration" + } + ] } }, "angularVelocity": { @@ -158,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrpose-angularvelocity" + } + ] } }, "hasOrientation": { @@ -284,7 +302,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrpose-linearacceleration" + } + ] } }, "linearVelocity": { @@ -338,7 +362,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrpose-linearvelocity" + } + ] } }, "position": { @@ -392,7 +422,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrpose-position" + } + ] } }, "orientation": { @@ -446,7 +482,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrpose-orientation" + } + ] } }, "timestamp": { diff --git a/api/VRStageParameters.json b/api/VRStageParameters.json index ea68b195af39df..48fd74022717b8 100644 --- a/api/VRStageParameters.json +++ b/api/VRStageParameters.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#interface-vrstageparameters" + } + ] }, "sittingToStandingTransform": { "__compat": { @@ -104,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrstageparameters-sittingtostandingtransform" + } + ] } }, "sizeX": { @@ -158,7 +170,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrstageparameters-sizex" + } + ] } }, "sizeY": { @@ -212,7 +230,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-vrstageparameters-sizey" + } + ] } } } diff --git a/api/ValidityState.json b/api/ValidityState.json index dd8e263d9b6dd2..3aa9cd452646b9 100644 --- a/api/ValidityState.json +++ b/api/ValidityState.json @@ -45,7 +45,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-constraint-validation-api" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#the-constraint-validation-api" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-constraint-validation-api" + } + ] }, "badInput": { "__compat": { @@ -92,7 +106,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/constraints.html#dom-validitystate-badinput" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#dom-validitystate-badinput" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-validitystate-badinput" + } + ] } }, "tooLong": { @@ -140,7 +168,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/constraints.html#dom-validitystate-toolong" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#dom-validitystate-toolong" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#dom-validitystate-toolong" + } + ] } } } diff --git a/api/VideoPlaybackQuality.json b/api/VideoPlaybackQuality.json index 4b96b446211d2c..0e0ac4dfd2ae44 100644 --- a/api/VideoPlaybackQuality.json +++ b/api/VideoPlaybackQuality.json @@ -60,7 +60,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#videoplaybackquality" + } + ] }, "creationTime": { "__compat": { @@ -122,7 +128,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-VideoPlaybackQuality-creationTime" + } + ] } }, "droppedVideoFrames": { @@ -185,7 +197,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-VideoPlaybackQuality-droppedVideoFrames" + } + ] } }, "corruptedVideoFrames": { @@ -248,7 +266,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-VideoPlaybackQuality-corruptedVideoFrames" + } + ] } }, "totalVideoFrames": { @@ -311,7 +335,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#widl-VideoPlaybackQuality-totalVideoFrames" + } + ] } }, "totalFrameDelay": { diff --git a/api/VideoTrack.json b/api/VideoTrack.json index 773d76ce8e8c9a..3db3c7352df90c 100644 --- a/api/VideoTrack.json +++ b/api/VideoTrack.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#videotrack" + } + ] }, "id": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-videotrack-id" + } + ] } }, "kind": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-videotrack-kind" + } + ] } }, "label": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-videotrack-label" + } + ] } }, "language": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-videotrack-language" + } + ] } }, "selected": { @@ -302,7 +332,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-videotrack-selected" + } + ] } }, "sourceBuffer": { @@ -353,7 +389,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Media Source Extensions", + "url": "https://w3c.github.io/media-source/#dom-videotrack-sourcebuffer" + } + ] } } } diff --git a/api/VideoTrackList.json b/api/VideoTrackList.json index e3b20dd2a53381..826df321ec4b14 100644 --- a/api/VideoTrackList.json +++ b/api/VideoTrackList.json @@ -90,7 +90,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#videotracklist" + } + ] }, "getTrackById": { "__compat": { @@ -182,7 +188,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-videotracklist-gettrackbyid" + } + ] } }, "length": { @@ -275,7 +287,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-videotracklist-length" + } + ] } }, "onaddtrack": { @@ -368,7 +386,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-tracklist-onaddtrack" + } + ] } }, "onchange": { @@ -461,7 +485,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-tracklist-onchange" + } + ] } }, "onremovetrack": { @@ -554,7 +584,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-tracklist-onremovetrack" + } + ] } }, "selectedIndex": { @@ -647,7 +683,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-videotracklist-selectedindex" + } + ] } } } diff --git a/api/VisualViewport.json b/api/VisualViewport.json index 0582491dfa31d2..5d121cbfb07471 100644 --- a/api/VisualViewport.json +++ b/api/VisualViewport.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Visual Viewport", + "url": "https://wicg.github.io/visual-viewport/#the-visualviewport-interface" + } + ] }, "height": { "__compat": { @@ -126,7 +132,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Visual Viewport", + "url": "https://wicg.github.io/visual-viewport/#dom-visualviewport-height" + } + ] } }, "offsetLeft": { @@ -256,7 +268,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Visual Viewport", + "url": "https://wicg.github.io/visual-viewport/#dom-visualviewport-offsettop" + } + ] } }, "onresize": { @@ -337,7 +355,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Visual Viewport", + "url": "https://wicg.github.io/visual-viewport/#dom-visualviewport-onresize" + } + ] } }, "onscroll": { @@ -418,7 +442,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Visual Viewport", + "url": "https://wicg.github.io/visual-viewport/#dom-visualviewport-onscroll" + } + ] } }, "pageLeft": { @@ -483,7 +513,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Visual Viewport", + "url": "https://wicg.github.io/visual-viewport/#dom-visualviewport-pageleft" + } + ] } }, "pageTop": { @@ -548,7 +584,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Visual Viewport", + "url": "https://wicg.github.io/visual-viewport/#dom-visualviewport-pagetop" + } + ] } }, "scale": { @@ -613,7 +655,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Visual Viewport", + "url": "https://wicg.github.io/visual-viewport/#dom-visualviewport-scale" + } + ] } }, "width": { @@ -678,7 +726,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Visual Viewport", + "url": "https://wicg.github.io/visual-viewport/#dom-visualviewport-width" + } + ] } } } diff --git a/api/WaveShaperNode.json b/api/WaveShaperNode.json index 99df7a13b3ac46..49025d097857a3 100644 --- a/api/WaveShaperNode.json +++ b/api/WaveShaperNode.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#the-waveshapernode-interface" + } + ] }, "WaveShaperNode": { "__compat": { @@ -102,7 +108,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#WaveShaperNode" + } + ] } }, "curve": { @@ -153,7 +165,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-WaveShaperNode-curve" + } + ] } }, "oversample": { @@ -204,7 +222,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Audio API", + "url": "https://webaudio.github.io/web-audio-api/#widl-WaveShaperNode-oversample" + } + ] } } } diff --git a/api/WebGL2RenderingContext.json b/api/WebGL2RenderingContext.json index 9359787c2861bd..239f01e63f0e42 100644 --- a/api/WebGL2RenderingContext.json +++ b/api/WebGL2RenderingContext.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7" + } + ] }, "beginQuery": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.12" + } + ] } }, "beginTransformFeedback": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.15" + } + ] } }, "bindBufferBase": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.16" + } + ] } }, "bindBufferRange": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.16" + } + ] } }, "bindSampler": { @@ -302,7 +332,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.13" + } + ] } }, "bindTransformFeedback": { @@ -353,7 +389,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.15" + } + ] } }, "bindVertexArray": { @@ -404,7 +446,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.17" + } + ] } }, "blitFramebuffer": { @@ -455,7 +503,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.4" + } + ] } }, "bufferSubData": { @@ -608,7 +662,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.11" + } + ] } }, "clearBufferfv": { @@ -659,7 +719,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.11" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -761,7 +827,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.11" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -863,7 +935,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.11" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -965,7 +1043,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14" + } + ] } }, "compressedTexImage3D": { @@ -1016,7 +1100,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#COMPRESSEDTEXIMAGE2D" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -1118,7 +1208,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] } }, "copyBufferSubData": { @@ -1169,7 +1265,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.3" + } + ] } }, "copyTexSubImage3D": { @@ -1220,7 +1322,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] } }, "createQuery": { @@ -1271,7 +1379,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.12" + } + ] } }, "createSampler": { @@ -1322,7 +1436,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.13" + } + ] } }, "createTransformFeedback": { @@ -1373,7 +1493,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.15" + } + ] } }, "createVertexArray": { @@ -1424,7 +1550,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.17" + } + ] } }, "deleteQuery": { @@ -1475,7 +1607,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.12" + } + ] } }, "deleteSampler": { @@ -1526,7 +1664,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.13" + } + ] } }, "deleteSync": { @@ -1577,7 +1721,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.13" + } + ] } }, "deleteTransformFeedback": { @@ -1628,7 +1778,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.15" + } + ] } }, "deleteVertexArray": { @@ -1679,7 +1835,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.17" + } + ] } }, "drawArraysInstanced": { @@ -1730,7 +1892,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.9" + } + ] } }, "drawBuffers": { @@ -1781,7 +1949,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.11" + } + ] } }, "drawElementsInstanced": { @@ -1832,7 +2006,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.9" + } + ] } }, "drawRangeElements": { @@ -1883,7 +2063,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.9" + } + ] } }, "endQuery": { @@ -1934,7 +2120,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.12" + } + ] } }, "endTransformFeedback": { @@ -1985,7 +2177,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.15" + } + ] } }, "fenceSync": { @@ -2036,7 +2234,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14" + } + ] } }, "framebufferTextureLayer": { @@ -2087,7 +2291,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.4" + } + ] } }, "getActiveUniformBlockName": { @@ -2138,7 +2348,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.16" + } + ] } }, "getActiveUniformBlockParameter": { @@ -2189,7 +2405,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.16" + } + ] } }, "getActiveUniforms": { @@ -2240,7 +2462,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.16" + } + ] } }, "getBufferSubData": { @@ -2291,7 +2519,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.3" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -2393,7 +2627,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.7" + } + ] } }, "getInternalformatParameter": { @@ -2444,7 +2684,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.5" + } + ] } }, "getQuery": { @@ -2495,7 +2741,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.12" + } + ] } }, "getQueryParameter": { @@ -2546,7 +2798,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.12" + } + ] } }, "getSamplerParameter": { @@ -2597,7 +2855,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.13" + } + ] } }, "getSyncParameter": { @@ -2648,7 +2912,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14" + } + ] } }, "getTransformFeedbackVarying": { @@ -2699,7 +2969,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.15" + } + ] } }, "getUniformBlockIndex": { @@ -2750,7 +3026,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.16" + } + ] } }, "getUniformIndices": { @@ -2801,7 +3083,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.16" + } + ] } }, "getIndexedParameter": { @@ -2852,7 +3140,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.2" + } + ] } }, "invalidateFramebuffer": { @@ -2903,7 +3197,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.4" + } + ] } }, "invalidateSubFramebuffer": { @@ -2954,7 +3254,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.4" + } + ] } }, "isQuery": { @@ -3005,7 +3311,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.12" + } + ] } }, "isSampler": { @@ -3056,7 +3368,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.13" + } + ] } }, "isSync": { @@ -3107,7 +3425,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14" + } + ] } }, "isTransformFeedback": { @@ -3158,7 +3482,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.15" + } + ] } }, "isVertexArray": { @@ -3209,7 +3539,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.17" + } + ] } }, "pauseTransformFeedback": { @@ -3260,7 +3596,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.15" + } + ] } }, "readBuffer": { @@ -3311,7 +3653,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.4" + } + ] } }, "renderbufferStorageMultisample": { @@ -3362,7 +3710,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.5" + } + ] } }, "resumeTransformFeedback": { @@ -3413,7 +3767,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.15" + } + ] } }, "samplerParameteri": { @@ -3566,7 +3926,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -3668,7 +4034,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] } }, "texStorage3D": { @@ -3719,7 +4091,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] } }, "texSubImage3D": { @@ -3770,7 +4148,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -3872,7 +4256,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.15" + } + ] } }, "uniform1uiv": { @@ -3923,7 +4313,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform1ui": { @@ -3974,7 +4370,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform1i": { @@ -4025,7 +4427,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform1f": { @@ -4076,7 +4484,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform2uiv": { @@ -4127,7 +4541,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform2ui": { @@ -4178,7 +4598,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform2i": { @@ -4229,7 +4655,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform2f": { @@ -4280,7 +4712,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform3uiv": { @@ -4331,7 +4769,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform3ui": { @@ -4382,7 +4826,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform3i": { @@ -4433,7 +4883,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform3f": { @@ -4484,7 +4940,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform4uiv": { @@ -4535,7 +4997,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform4ui": { @@ -4586,7 +5054,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform4i": { @@ -4637,7 +5111,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniform4f": { @@ -4688,7 +5168,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "uniformBlockBinding": { @@ -4739,7 +5225,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.16" + } + ] } }, "uniformMatrix2fv": { @@ -4790,7 +5282,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -4892,7 +5390,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -4994,7 +5498,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -5096,7 +5606,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -5198,7 +5714,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -5300,7 +5822,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -5402,7 +5930,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -5504,7 +6038,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -5606,7 +6146,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -5708,7 +6254,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.9" + } + ] } }, "vertexAttribI4i": { @@ -5759,7 +6311,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "vertexAttribI4iv": { @@ -5810,7 +6368,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -5912,7 +6476,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "vertexAttribI4uiv": { @@ -5963,7 +6533,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -6065,7 +6641,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] } }, "waitSync": { @@ -6116,7 +6698,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14" + } + ] } } } diff --git a/api/WebGLActiveInfo.json b/api/WebGLActiveInfo.json index 2c055670f511a8..c2d30ec9d0752b 100644 --- a/api/WebGLActiveInfo.json +++ b/api/WebGLActiveInfo.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.11" + } + ] }, "worker_support": { "__compat": { @@ -156,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#DOM-WebGLActiveInfo-name" + } + ] } }, "size": { @@ -207,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#DOM-WebGLActiveInfo-size" + } + ] } }, "type": { @@ -258,7 +276,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#DOM-WebGLActiveInfo-type" + } + ] } } } diff --git a/api/WebGLBuffer.json b/api/WebGLBuffer.json index 047ff4fcd38255..77fcaf61a75608 100644 --- a/api/WebGLBuffer.json +++ b/api/WebGLBuffer.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.4" + } + ] }, "worker_support": { "__compat": { diff --git a/api/WebGLContextEvent.json b/api/WebGLContextEvent.json index 0659bb61358e57..0b26ff166b137a 100644 --- a/api/WebGLContextEvent.json +++ b/api/WebGLContextEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.15" + } + ] }, "worker_support": { "__compat": { @@ -156,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.15.1" + } + ] } } } diff --git a/api/WebGLFramebuffer.json b/api/WebGLFramebuffer.json index 09464a4b66d686..c2404af600e130 100644 --- a/api/WebGLFramebuffer.json +++ b/api/WebGLFramebuffer.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.5" + } + ] }, "worker_support": { "__compat": { diff --git a/api/WebGLProgram.json b/api/WebGLProgram.json index 12d86ab5f67f5a..73ed7017e9f18b 100644 --- a/api/WebGLProgram.json +++ b/api/WebGLProgram.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.6" + } + ] }, "worker_support": { "__compat": { diff --git a/api/WebGLQuery.json b/api/WebGLQuery.json index 3816b7c9c3f7e4..37358ad03b5a37 100644 --- a/api/WebGLQuery.json +++ b/api/WebGLQuery.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.2" + } + ] } } } diff --git a/api/WebGLRenderbuffer.json b/api/WebGLRenderbuffer.json index b5c272c13d92cf..b1cdddb473992a 100644 --- a/api/WebGLRenderbuffer.json +++ b/api/WebGLRenderbuffer.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.7" + } + ] }, "worker_support": { "__compat": { diff --git a/api/WebGLRenderingContext.json b/api/WebGLRenderingContext.json index 11eef37902560e..70909c9bef61f9 100644 --- a/api/WebGLRenderingContext.json +++ b/api/WebGLRenderingContext.json @@ -57,7 +57,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14" + } + ] }, "worker_support": { "__compat": { @@ -165,7 +171,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "attachShader": { @@ -216,7 +228,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "bindAttribLocation": { @@ -267,7 +285,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "bindBuffer": { @@ -318,7 +342,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.1" + } + ] }, "WebGL2": { "__compat": { @@ -419,7 +453,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.1" + } + ] }, "WebGL2": { "__compat": { @@ -520,7 +564,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7" + } + ] } }, "bindTexture": { @@ -571,7 +621,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.1" + } + ] }, "WebGL2": { "__compat": { @@ -672,7 +732,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "blendEquation": { @@ -723,7 +789,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] }, "WebGL2": { "__compat": { @@ -824,7 +896,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] }, "WebGL2": { "__compat": { @@ -925,7 +1003,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "blendFuncSeparate": { @@ -976,7 +1060,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -1078,7 +1168,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5" + } + ] }, "WebGL2": { "__compat": { @@ -1179,7 +1275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5" + } + ] }, "WebGL2": { "__compat": { @@ -1280,7 +1382,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#DOM-WebGLRenderingContext-canvas" + } + ] }, "OffscreenCanvas": { "__compat": { @@ -1388,7 +1496,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.4" + } + ] }, "WebGL2": { "__compat": { @@ -1489,7 +1607,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.11" + } + ] } }, "clearColor": { @@ -1540,7 +1664,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "clearDepth": { @@ -1591,7 +1721,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "clearStencil": { @@ -1642,7 +1778,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "colorMask": { @@ -1693,7 +1835,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "commit": { @@ -1802,7 +1950,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "compressedTexImage2D": { @@ -1853,7 +2007,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#COMPRESSEDTEXIMAGE2D" + } + ] }, "WebGL2": { "__compat": { @@ -2005,7 +2165,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#COMPRESSEDTEXSUBIMAGE2D" + } + ] }, "WebGL2": { "__compat": { @@ -2157,7 +2323,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + } + ] } }, "copyTexSubImage2D": { @@ -2208,7 +2380,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + } + ] } }, "createBuffer": { @@ -2259,7 +2437,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5" + } + ] } }, "createFramebuffer": { @@ -2310,7 +2494,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6" + } + ] } }, "createProgram": { @@ -2361,7 +2551,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "createRenderbuffer": { @@ -2412,7 +2608,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7" + } + ] } }, "createShader": { @@ -2463,7 +2665,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "createTexture": { @@ -2514,7 +2722,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + } + ] } }, "cullFace": { @@ -2565,7 +2779,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "deleteBuffer": { @@ -2616,7 +2836,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5" + } + ] } }, "deleteFramebuffer": { @@ -2667,7 +2893,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6" + } + ] } }, "deleteProgram": { @@ -2718,7 +2950,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "deleteRenderbuffer": { @@ -2769,7 +3007,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7" + } + ] } }, "deleteShader": { @@ -2820,7 +3064,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "deleteTexture": { @@ -2871,7 +3121,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + } + ] } }, "depthFunc": { @@ -2922,7 +3178,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "depthMask": { @@ -2973,7 +3235,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "depthRange": { @@ -3024,7 +3292,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "detachShader": { @@ -3075,7 +3349,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "disable": { @@ -3126,7 +3406,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "disableVertexAttribArray": { @@ -3177,7 +3463,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "drawArrays": { @@ -3228,7 +3520,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.11" + } + ] } }, "drawElements": { @@ -3279,7 +3577,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.11" + } + ] } }, "drawingBufferHeight": { @@ -3330,7 +3634,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#DOM-WebGLRenderingContext-drawingBufferHeight" + } + ] } }, "drawingBufferWidth": { @@ -3381,7 +3691,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#DOM-WebGLRenderingContext-drawingBufferWidth" + } + ] } }, "enable": { @@ -3432,7 +3748,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "enableVertexAttribArray": { @@ -3483,7 +3805,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "finish": { @@ -3534,7 +3862,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.11" + } + ] } }, "flush": { @@ -3585,7 +3919,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.11" + } + ] } }, "framebufferRenderbuffer": { @@ -3636,7 +3976,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6" + } + ] }, "WebGL2": { "__compat": { @@ -3737,7 +4083,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6" + } + ] }, "WebGL2": { "__compat": { @@ -3838,7 +4190,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "generateMipmap": { @@ -3889,7 +4247,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + } + ] }, "WebGL2": { "__compat": { @@ -3990,7 +4354,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "getActiveUniform": { @@ -4041,7 +4411,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "getAttachedShaders": { @@ -4092,7 +4468,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "getAttribLocation": { @@ -4143,7 +4525,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "getBufferParameter": { @@ -4194,7 +4582,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.3" + } + ] }, "WebGL2": { "__compat": { @@ -4295,7 +4693,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.2" + } + ] } }, "getError": { @@ -4346,7 +4750,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "getExtension": { @@ -4397,7 +4807,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.14" + } + ] } }, "getFramebufferAttachmentParameter": { @@ -4448,7 +4864,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.4" + } + ] }, "WebGL2": { "__compat": { @@ -4549,7 +4975,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.2" + } + ] } }, "getProgramInfoLog": { @@ -4600,7 +5036,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "getProgramParameter": { @@ -4651,7 +5093,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.7" + } + ] }, "WebGL2": { "__compat": { @@ -4752,7 +5204,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.5" + } + ] }, "WebGL2": { "__compat": { @@ -4853,7 +5315,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "getShaderParameter": { @@ -4904,7 +5372,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "getShaderPrecisionFormat": { @@ -4955,7 +5429,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "getShaderSource": { @@ -5006,7 +5486,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "getSupportedExtensions": { @@ -5057,7 +5543,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.14" + } + ] } }, "getTexParameter": { @@ -5108,7 +5600,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] }, "WebGL2": { "__compat": { @@ -5209,7 +5711,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "WebGL2": { "__compat": { @@ -5310,7 +5822,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "getVertexAttrib": { @@ -5361,7 +5879,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.8" + } + ] }, "WebGL2": { "__compat": { @@ -5462,7 +5990,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "hint": { @@ -5513,7 +6047,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "isBuffer": { @@ -5564,7 +6104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5" + } + ] } }, "isContextLost": { @@ -5615,7 +6161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.13" + } + ] } }, "isEnabled": { @@ -5666,7 +6218,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.2" + } + ] }, "WebGL2": { "__compat": { @@ -5767,7 +6329,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6" + } + ] } }, "isProgram": { @@ -5818,7 +6386,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "isRenderbuffer": { @@ -5869,7 +6443,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7" + } + ] } }, "isShader": { @@ -5920,7 +6500,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "isTexture": { @@ -5971,7 +6557,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + } + ] } }, "lineWidth": { @@ -6022,7 +6614,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "linkProgram": { @@ -6073,7 +6671,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "pixelStorei": { @@ -6124,7 +6728,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + }, + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#PIXEL_STORAGE_PARAMETERS" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.2" + } + ] }, "WebGL2": { "__compat": { @@ -6225,7 +6843,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "readPixels": { @@ -6276,7 +6900,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.12" + } + ] }, "WebGL2": { "__compat": { @@ -6428,7 +7058,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.5" + } + ] }, "WebGL2": { "__compat": { @@ -6529,7 +7169,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "scissor": { @@ -6580,7 +7226,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.4" + } + ] } }, "shaderSource": { @@ -6631,7 +7283,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "stencilFunc": { @@ -6682,7 +7340,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "stencilFuncSeparate": { @@ -6733,7 +7397,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "stencilMask": { @@ -6784,7 +7454,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "stencilMaskSeparate": { @@ -6835,7 +7511,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "stencilOp": { @@ -6886,7 +7568,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "stencilOpSeparate": { @@ -6937,7 +7625,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3" + } + ] } }, "texImage2D": { @@ -6988,7 +7682,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] }, "WebGL2": { "__compat": { @@ -7140,7 +7844,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] }, "WebGL2": { "__compat": { @@ -7241,7 +7955,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] }, "WebGL2": { "__compat": { @@ -7342,7 +8066,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#TEXSUBIMAGE2D" + }, + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.6" + } + ] }, "WebGL2": { "__compat": { @@ -7494,7 +8228,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform1fv": { @@ -7545,7 +8285,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform1i": { @@ -7596,7 +8342,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform1iv": { @@ -7647,7 +8399,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform2f": { @@ -7698,7 +8456,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform2fv": { @@ -7749,7 +8513,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform2i": { @@ -7800,7 +8570,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform2iv": { @@ -7851,7 +8627,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform3f": { @@ -7902,7 +8684,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform3fv": { @@ -7953,7 +8741,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform3i": { @@ -8004,7 +8798,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform3iv": { @@ -8055,7 +8855,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform4f": { @@ -8106,7 +8912,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform4fv": { @@ -8157,7 +8969,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform4i": { @@ -8208,7 +9026,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniform4iv": { @@ -8259,7 +9083,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "uniformMatrix2fv": { @@ -8310,7 +9140,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] }, "WebGL2": { "__compat": { @@ -8462,7 +9298,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] }, "WebGL2": { "__compat": { @@ -8614,7 +9456,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] }, "WebGL2": { "__compat": { @@ -8766,7 +9614,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "validateProgram": { @@ -8817,7 +9671,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9" + } + ] } }, "vertexAttrib1f": { @@ -8868,7 +9728,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "vertexAttrib1fv": { @@ -8919,7 +9785,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -9021,7 +9893,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "vertexAttrib2fv": { @@ -9072,7 +9950,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -9174,7 +10058,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "vertexAttrib3fv": { @@ -9225,7 +10115,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -9327,7 +10223,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "vertexAttrib4fv": { @@ -9378,7 +10280,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] }, "SharedArrayBuffer_as_param": { "__compat": { @@ -9480,7 +10388,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10" + } + ] } }, "viewport": { @@ -9531,7 +10445,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.4" + } + ] } } } diff --git a/api/WebGLSampler.json b/api/WebGLSampler.json index cdd17dc7148832..46f0ed4c2101c2 100644 --- a/api/WebGLSampler.json +++ b/api/WebGLSampler.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.3" + } + ] } } } diff --git a/api/WebGLShader.json b/api/WebGLShader.json index 658313814e6f3f..dce96dca1b177b 100644 --- a/api/WebGLShader.json +++ b/api/WebGLShader.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.8" + } + ] }, "worker_support": { "__compat": { diff --git a/api/WebGLShaderPrecisionFormat.json b/api/WebGLShaderPrecisionFormat.json index deff2316a9017e..187fee31d8133c 100644 --- a/api/WebGLShaderPrecisionFormat.json +++ b/api/WebGLShaderPrecisionFormat.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.12" + } + ] }, "worker_support": { "__compat": { @@ -156,7 +162,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#DOM-WebGLShaderPrecisionFormat-rangeMin" + } + ] } }, "rangeMax": { @@ -207,7 +219,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#DOM-WebGLShaderPrecisionFormat-rangeMax" + } + ] } }, "precision": { @@ -258,7 +276,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#DOM-WebGLShaderPrecisionFormat-precision" + } + ] } } } diff --git a/api/WebGLSync.json b/api/WebGLSync.json index e355cd3ad1d66b..872bbc68e1bb50 100644 --- a/api/WebGLSync.json +++ b/api/WebGLSync.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.4" + } + ] } } } diff --git a/api/WebGLTexture.json b/api/WebGLTexture.json index 5fca6c5e4a81df..572fe535998fce 100644 --- a/api/WebGLTexture.json +++ b/api/WebGLTexture.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.9" + } + ] }, "worker_support": { "__compat": { diff --git a/api/WebGLTransformFeedback.json b/api/WebGLTransformFeedback.json index b6c3a2138eeb6d..a93e4a904544fb 100644 --- a/api/WebGLTransformFeedback.json +++ b/api/WebGLTransformFeedback.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.5" + } + ] } } } diff --git a/api/WebGLUniformLocation.json b/api/WebGLUniformLocation.json index baa55958c4ca5e..6b61089d432316 100644 --- a/api/WebGLUniformLocation.json +++ b/api/WebGLUniformLocation.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL", + "url": "https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.10" + } + ] }, "worker_support": { "__compat": { diff --git a/api/WebGLVertexArrayObject.json b/api/WebGLVertexArrayObject.json index 77a80d10a35163..35375004536fd6 100644 --- a/api/WebGLVertexArrayObject.json +++ b/api/WebGLVertexArrayObject.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.6" + } + ] } } } diff --git a/api/WebGLVertexArrayObjectOES.json b/api/WebGLVertexArrayObjectOES.json index 52a26119e3a66f..8493a5e95884c0 100644 --- a/api/WebGLVertexArrayObjectOES.json +++ b/api/WebGLVertexArrayObjectOES.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebGL2", + "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.6" + } + ] } } } diff --git a/api/WebSocket.json b/api/WebSocket.json index 2f02c17da86f1f..3fd2571586a1cf 100644 --- a/api/WebSocket.json +++ b/api/WebSocket.json @@ -68,7 +68,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-sockets.html#the-websocket-interface" + } + ] }, "WebSocket": { "__compat": { @@ -123,7 +129,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-websocket" + } + ] } }, "binaryType": { @@ -171,7 +183,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-websocket-binarytype" + } + ] } }, "bufferedAmount": { @@ -219,7 +237,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-websocket-bufferedamount" + } + ] } }, "close": { @@ -274,7 +298,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-sockets.html#dom-websocket-close" + } + ] } }, "extensions": { @@ -322,7 +352,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-websocket-extensions" + } + ] } }, "onclose": { @@ -370,7 +406,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-websocket-onclose" + } + ] } }, "onerror": { @@ -418,7 +460,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-websocket-onerror" + } + ] } }, "onmessage": { @@ -466,7 +514,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-websocket-onmessage" + } + ] } }, "onopen": { @@ -514,7 +568,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-websocket-onopen" + } + ] } }, "protocol": { @@ -562,7 +622,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-websocket-protocol" + } + ] } }, "readyState": { @@ -610,7 +676,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-websocket-readystate" + } + ] } }, "send": { @@ -676,7 +748,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-websocket-send" + } + ] } }, "url": { @@ -724,7 +802,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-websocket-url" + } + ] } } } diff --git a/api/WheelEvent.json b/api/WheelEvent.json index 15e333e50e7c29..11657dc7a8f215 100644 --- a/api/WheelEvent.json +++ b/api/WheelEvent.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#interface-wheelevent" + } + ] }, "pinch-to-zoom_support": { "__compat": { @@ -150,7 +156,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#interface-WheelEvent" + } + ] } }, "deltaMode": { @@ -201,7 +213,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-WheelEvent-deltaMode" + } + ] } }, "deltaX": { @@ -253,7 +271,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-WheelEvent-deltaX" + } + ] } }, "deltaY": { @@ -305,7 +329,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-WheelEvent-deltaY" + } + ] } }, "deltaZ": { @@ -357,7 +387,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM3 Events", + "url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#widl-WheelEvent-deltaZ" + } + ] } } } diff --git a/api/Window.json b/api/Window.json index e49e60ebcd7106..4e697a71ced3d8 100644 --- a/api/Window.json +++ b/api/Window.json @@ -103,7 +103,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-alert" + } + ] } }, "blur": { @@ -154,7 +160,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-window-blur" + } + ] } }, "confirm": { @@ -210,7 +222,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-confirm" + } + ] } }, "cancelAnimationFrame": { @@ -465,7 +483,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-window-close" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-window-close" + } + ] } }, "focus": { @@ -516,7 +544,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#dom-window-focus" + } + ] } }, "ondevicelight": { @@ -568,7 +602,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "AmbientLight", + "url": "https://w3c.github.io/ambient-light/#event-handlers" + } + ] } }, "convertPointFromNodeToPage": { @@ -813,7 +853,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Proximity Events", + "url": "https://w3c.github.io/proximity/#device-proximity" + } + ] } }, "ongamepadconnected": { @@ -1046,7 +1092,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Proximity Events", + "url": "https://w3c.github.io/proximity/#user-proximity" + } + ] } }, "onvrdisplayactivate": { @@ -1097,7 +1149,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-window-onvrdisplayactivate" + } + ] } }, "onvrdisplayblur": { @@ -1148,7 +1206,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-window-onvrdisplayblur" + } + ] } }, "onvrdisplayconnect": { @@ -1218,7 +1282,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-window-onvrdisplayconnect" + } + ] } }, "onvrdisplaydeactivate": { @@ -1269,7 +1339,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-window-onvrdisplaydeactivate" + } + ] } }, "onvrdisplaydisconnect": { @@ -1339,7 +1415,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-window-onvrdisplaydisconnect" + } + ] } }, "onvrdisplayfocus": { @@ -1390,7 +1472,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-window-onvrdisplayfocus" + } + ] } }, "onvrdisplaypresentchange": { @@ -1460,7 +1548,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVR 1.1", + "url": "https://immersive-web.github.io/webvr/spec/1.1/#dom-window-onvrdisplaypresentchange" + } + ] } }, "crypto": { @@ -1512,7 +1606,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Crypto API", + "url": "https://www.w3.org/TR/WebCryptoAPI/#dfn-GlobalCrypto" + } + ] } }, "customElements": { @@ -1621,7 +1721,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/custom-elements.html#dom-window-customelements" + } + ] } }, "devicePixelRatio": { @@ -1672,7 +1778,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-devicepixelratio" + } + ] } }, "dialogArguments": { @@ -1774,7 +1886,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-document-2" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-document-0" + } + ] } }, "event": { @@ -1825,7 +1947,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#ref-for-dom-window-event" + } + ] } }, "frameElement": { @@ -1876,7 +2004,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-frameelement" + } + ] } }, "frames": { @@ -1927,7 +2061,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-frames" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-frames" + } + ] } }, "fullScreen": { @@ -2133,7 +2277,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM", + "url": "https://drafts.csswg.org/cssom/#dom-window-getcomputedstyle" + }, + { + "name": "DOM2 Style", + "url": "https://www.w3.org/TR/DOM-Level-2-Style/#CSS-CSSview-getComputedStyle" + } + ] }, "pseudo-element_support": { "__compat": { @@ -2339,7 +2493,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Selection API", + "url": "https://w3c.github.io/selection-api/#extensions-to-window-interface" + }, + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/#dom-window-getselection" + } + ] } }, "globalStorage": { @@ -2442,7 +2606,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#the-history-interface" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#the-history-interface" + } + ] } }, "home": { @@ -2559,7 +2733,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-innerheight" + } + ] } }, "innerWidth": { @@ -2624,7 +2804,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-innerwidth" + } + ] } }, "isSecureContext": { @@ -2777,7 +2963,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-length" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-length" + } + ] } }, "localStorage": { @@ -2828,7 +3024,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage" + } + ] } }, "location": { @@ -2881,7 +3083,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/history.html#the-location-interface" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#the-location-interface" + } + ] }, "window_location_origin": { "__compat": { @@ -2983,7 +3195,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-window-locationbar" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-window-locationbar" + } + ] } }, "matchMedia": { @@ -3034,7 +3256,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-matchmedia" + } + ] } }, "maximize": { @@ -3136,7 +3364,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-window-menubar" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-window-menubar" + } + ] } }, "minimize": { @@ -3238,7 +3476,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-moveby" + } + ] } }, "moveTo": { @@ -3289,7 +3533,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-moveto" + } + ] } }, "mozAnimationStartTime": { @@ -3544,7 +3794,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-name" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-name" + } + ] } }, "navigator": { @@ -3595,7 +3855,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-navigator" + } + ] } }, "onappinstalled": { @@ -3660,7 +3926,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Manifest", + "url": "https://w3c.github.io/manifest/#onappinstalled-attribute" + } + ] } }, "onbeforeinstallprompt": { @@ -3711,7 +3983,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Manifest", + "url": "https://w3c.github.io/manifest/#onbeforeinstallprompt-attribute" + } + ] } }, "ondevicemotion": { @@ -3864,7 +4142,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/window-object.html#dom-open" + }, + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#the-features-argument-to-the-open()-method" + } + ] } }, "openDialog": { @@ -4068,7 +4356,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-outerheight" + } + ] } }, "outerWidth": { @@ -4119,7 +4413,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-outerwidth" + } + ] } }, "pageXOffset": { @@ -4170,7 +4470,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-pagexoffset" + } + ] } }, "pageYOffset": { @@ -4221,7 +4527,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-pageyoffset" + } + ] } }, "parent": { @@ -4323,7 +4635,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Highres Time", + "url": "https://www.w3.org/TR/hr-time-1/#the-performance-interface" + } + ] } }, "personalbar": { @@ -4374,7 +4692,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-window-personalbar" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-window-personalbar" + } + ] } }, "pkcs11": { @@ -4511,7 +4839,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/web-messaging.html#dom-window-postmessage" + } + ] }, "transfer_argument_support": { "__compat": { @@ -4614,7 +4948,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#printing" + } + ] } }, "prompt": { @@ -4667,7 +5007,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-prompt" + } + ] } }, "releaseEvents": { @@ -4821,7 +5167,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#animation-frames" + }, + { + "name": "RequestAnimationFrame", + "url": "https://www.w3.org/TR/animation-timing/#dom-windowanimationtiming-requestanimationframe" + } + ] }, "return_value": { "__compat": { @@ -5044,7 +5400,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-resizeby" + } + ] } }, "resizeTo": { @@ -5096,7 +5458,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-resizeto" + } + ] } }, "restore": { @@ -5300,7 +5668,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-screen" + } + ] } }, "screenX": { @@ -5353,7 +5727,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-screenx" + } + ] } }, "screenY": { @@ -5406,7 +5786,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-screeny" + } + ] } }, "scroll": { @@ -5457,7 +5843,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-scroll" + } + ] } }, "scrollbars": { @@ -5508,7 +5900,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-window-scrollbars" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-window-scrollbars" + } + ] } }, "scrollBy": { @@ -5559,7 +5961,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-scrollby" + } + ] } }, "scrollByLines": { @@ -5814,7 +6222,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-scroll" + } + ] } }, "scrollX": { @@ -5943,7 +6357,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-scrollx" + } + ] }, "subpixel_precision": { "__compat": { @@ -6123,7 +6543,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSSOM View", + "url": "https://drafts.csswg.org/cssom-view/#dom-window-scrolly" + } + ] }, "subpixel_precision": { "__compat": { @@ -6225,7 +6651,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-self" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/browsers.html#dom-self" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-self" + } + ] } }, "sessionStorage": { @@ -6276,7 +6716,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webstorage.html#dom-sessionstorage" + } + ] } }, "setCursor": { @@ -6643,7 +7089,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Web Speech API", + "url": "https://w3c.github.io/speech-api/#tts-section" + } + ] } }, "status": { @@ -6745,7 +7197,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-window-statusbar" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-window-statusbar" + } + ] } }, "stop": { @@ -6796,7 +7258,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-window-stop" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-window-stop" + } + ] } }, "toolbar": { @@ -6847,7 +7319,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-window-toolbar" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-window-toolbar" + } + ] } }, "top": { @@ -6899,7 +7381,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#dom-top" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-top" + } + ] } }, "updateCommands": { @@ -7015,7 +7507,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Visual Viewport", + "url": "https://wicg.github.io/visual-viewport/#dom-window-visualviewport" + } + ] } }, "window": { @@ -7066,7 +7564,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-window" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/browsers.html#dom-window" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/browsers.html#dom-window" + } + ] } } } diff --git a/api/WindowClient.json b/api/WindowClient.json index 67c1477a01facc..d6b45d1eb2acfe 100644 --- a/api/WindowClient.json +++ b/api/WindowClient.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#window-client-interface" + } + ] }, "focus": { "__compat": { @@ -100,7 +106,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#client-focus-method" + } + ] } }, "navigate": { @@ -152,7 +164,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#client-navigate-method" + } + ] } }, "focused": { @@ -204,7 +222,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#window-client-interface" + } + ] } }, "visibilityState": { @@ -256,7 +280,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#window-client-interface" + } + ] } }, "ancestorOrigins": { diff --git a/api/WindowEventHandlers.json b/api/WindowEventHandlers.json index ca91ca4753660c..6ee12b2dd43caa 100644 --- a/api/WindowEventHandlers.json +++ b/api/WindowEventHandlers.json @@ -45,7 +45,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#windoweventhandlers" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#windoweventhandlers" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#windoweventhandlers" + } + ] }, "onafterprint": { "__compat": { @@ -92,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-window-onafterprint" + } + ] } }, "onbeforeprint": { @@ -140,7 +160,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-window-onbeforeprint" + } + ] } }, "onbeforeunload": { @@ -189,7 +215,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-window-onbeforeunload" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#windoweventhandlers" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#windoweventhandlers" + } + ] }, "custom_text_support": { "__compat": { @@ -293,7 +333,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-window-onhashchange" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#windoweventhandlers" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#windoweventhandlers" + } + ] } }, "onlanguagechange": { @@ -341,7 +395,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-workerglobalscope-onlanguagechange" + } + ] } }, "onmessage": { @@ -389,7 +449,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-window-onmessage" + } + ] } }, "onmessageerror": { @@ -437,7 +503,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-window-onmessageerror" + } + ] }, "worker_support": { "__compat": { @@ -583,7 +655,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-window-onrejectionhandled" + } + ] } }, "onstorage": { @@ -631,7 +709,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-window-onstorage" + } + ] } }, "onunhandledrejection": { @@ -681,7 +765,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-window-onunhandledrejection" + } + ] } }, "onunload": { @@ -729,7 +819,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-window-onunload" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#windoweventhandlers" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#windoweventhandlers" + } + ] } } } diff --git a/api/WindowOrWorkerGlobalScope.json b/api/WindowOrWorkerGlobalScope.json index b7bc7a22cc0903..ada2fc3c355691 100644 --- a/api/WindowOrWorkerGlobalScope.json +++ b/api/WindowOrWorkerGlobalScope.json @@ -45,7 +45,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#windoworworkerglobalscope-mixin" + }, + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#fetch-method" + }, + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#self-caches" + }, + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-windoworworkerglobalscope-indexeddb" + }, + { + "name": "Secure Contexts", + "url": "https://w3c.github.io/webappsec-secure-contexts/#dom-windoworworkerglobalscope-issecurecontext" + } + ] }, "atob": { "__compat": { @@ -112,7 +134,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-atob" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#dom-windowbase64-atob" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#dom-windowbase64-atob" + } + ] } }, "btoa": { @@ -172,7 +208,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-btoa" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/#dom-windowbase64-btoa" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#dom-windowbase64-btoa" + } + ] } }, "caches": { @@ -232,7 +282,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Service Workers", + "url": "https://w3c.github.io/ServiceWorker/#self-caches" + } + ] } }, "clearInterval": { @@ -292,7 +348,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-clearinterval" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-clearinterval" + } + ] } }, "clearTimeout": { @@ -352,7 +418,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-cleartimeout" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-cleartimeout" + } + ] } }, "createImageBitmap": { @@ -406,7 +482,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-createimagebitmap" + } + ] }, "options_parameter": { "__compat": { @@ -639,7 +721,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#fetch-method" + }, + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#dom-global-fetch" + } + ] }, "streaming_response_body": { "__compat": { @@ -912,7 +1004,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "IndexedDB 2", + "url": "https://w3c.github.io/IndexedDB/#dom-windoworworkerglobalscope-indexeddb" + }, + { + "name": "IndexedDB", + "url": "https://www.w3.org/TR/IndexedDB/#widl-IDBEnvironment-indexedDB" + } + ] }, "worker_support": { "__compat": { @@ -1008,7 +1110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Secure Contexts", + "url": "https://w3c.github.io/webappsec-secure-contexts/#dom-windoworworkerglobalscope-issecurecontext" + } + ] } }, "origin": { @@ -1056,7 +1164,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-origin" + } + ] } }, "setInterval": { @@ -1116,7 +1230,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-setinterval" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-setinterval" + } + ] }, "supports_parameters_for_callback": { "__compat": { @@ -1224,7 +1348,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-settimeout" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#dom-settimeout" + } + ] }, "supports_parameters_for_callback": { "__compat": { diff --git a/api/Worker.json b/api/Worker.json index fdc29929fe8293..a3694a7ccd1045 100644 --- a/api/Worker.json +++ b/api/Worker.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#worker" + } + ] }, "Worker": { "__compat": { @@ -99,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-worker" + } + ] }, "name": { "__compat": { @@ -203,7 +215,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-worker-onmessage" + } + ] } }, "onmessageerror": { @@ -254,7 +272,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-worker-onmessageerror" + } + ] } }, "postMessage": { @@ -306,7 +330,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-worker-postmessage" + } + ] } }, "terminate": { @@ -357,7 +387,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-worker-terminate" + } + ] } } } diff --git a/api/WorkerGlobalScope.json b/api/WorkerGlobalScope.json index 97101581609243..a88783ff710cd8 100644 --- a/api/WorkerGlobalScope.json +++ b/api/WorkerGlobalScope.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#workerglobalscope" + } + ] }, "location": { "__compat": { @@ -98,7 +104,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-workerglobalscope-location" + } + ] } }, "navigator": { @@ -149,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-worker-navigator" + } + ] } }, "onerror": { @@ -200,7 +218,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-workerglobalscope-onerror" + } + ] } }, "onlanguagechange": { @@ -251,7 +275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-workerglobalscope-onlanguagechange" + } + ] } }, "onoffline": { @@ -302,7 +332,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-workerglobalscope-onoffline" + } + ] } }, "ononline": { @@ -353,7 +389,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#handler-workerglobalscope-ononline" + } + ] } }, "performance": { @@ -404,7 +446,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Highres Time Level 2", + "url": "https://www.w3.org/TR/hr-time-2/#the-performance-attribute" + } + ] } }, "self": { @@ -455,7 +503,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-workerglobalscope-self" + } + ] } }, "console": { @@ -712,7 +766,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#dom-workerglobalscope-importscripts" + } + ] } }, "onclose": { diff --git a/api/WorkerLocation.json b/api/WorkerLocation.json index 53cdaab5342420..a6b5bdb9b5d11a 100644 --- a/api/WorkerLocation.json +++ b/api/WorkerLocation.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#workerlocation" + } + ] } } } diff --git a/api/WorkerNavigator.json b/api/WorkerNavigator.json index 26bfa0a06d6ee6..02da550735bfff 100644 --- a/api/WorkerNavigator.json +++ b/api/WorkerNavigator.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#workernavigator" + } + ] }, "connection": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Network Information", + "url": "https://w3c.github.io/netinfo/#h-the-connection-attribute" + } + ] } }, "permissions": { diff --git a/api/Worklet.json b/api/Worklet.json index a7d056ea91fcb9..5f93e8aa4756a4 100644 --- a/api/Worklet.json +++ b/api/Worklet.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Worklets", + "url": "https://drafts.css-houdini.org/worklets/#worklet" + } + ] }, "addModule": { "__compat": { @@ -98,7 +104,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Worklets", + "url": "https://drafts.css-houdini.org/worklets/#dom-worklet-addmodule" + } + ] } } } diff --git a/api/WritableStream.json b/api/WritableStream.json index edfc3e03f72c4f..f2146dd1de1d98 100644 --- a/api/WritableStream.json +++ b/api/WritableStream.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#ws-class" + } + ] }, "WritableStream": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#ws-constructor" + } + ] } }, "abort": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#ws-abort" + } + ] } }, "getWriter": { @@ -201,7 +219,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#ws-get-writer" + } + ] } }, "locked": { @@ -252,7 +276,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#ws-locked" + } + ] } } } diff --git a/api/WritableStreamDefaultController.json b/api/WritableStreamDefaultController.json index 2250f95692d96a..478d0a12c2b2a3 100644 --- a/api/WritableStreamDefaultController.json +++ b/api/WritableStreamDefaultController.json @@ -48,7 +48,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#ws-default-controller-class" + } + ] }, "WritableStreamDefaultController": { "__compat": { @@ -99,7 +105,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#ws-default-controller-constructor" + } + ] } }, "error": { @@ -150,7 +162,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#ws-default-controller-error" + } + ] } } } diff --git a/api/WritableStreamDefaultWriter.json b/api/WritableStreamDefaultWriter.json index 4447acdc093420..2f2439d8265c84 100644 --- a/api/WritableStreamDefaultWriter.json +++ b/api/WritableStreamDefaultWriter.json @@ -45,7 +45,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-writer-class" + } + ] }, "WritableStreamDefaultWriter": { "__compat": { @@ -93,7 +99,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-writer-constructor" + } + ] } }, "closed": { @@ -141,7 +153,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-writer-closed" + } + ] } }, "desiredSize": { @@ -189,7 +207,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-writer-desiredSize" + } + ] } }, "ready": { @@ -237,7 +261,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-writer-ready" + } + ] } }, "abort": { @@ -285,7 +315,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-writer-abort" + } + ] } }, "close": { @@ -333,7 +369,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-writer-close" + } + ] } }, "releaseLock": { @@ -381,7 +423,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-reader-release-lock" + } + ] } }, "write": { @@ -429,7 +477,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Streams", + "url": "https://streams.spec.whatwg.org/#default-writer-write" + } + ] } } } diff --git a/api/XMLDocument.json b/api/XMLDocument.json index 3434c7a67de81f..3c693c55face36 100644 --- a/api/XMLDocument.json +++ b/api/XMLDocument.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#xmldocument" + }, + { + "name": "DOM4", + "url": "https://www.w3.org/TR/dom/#xmldocument" + } + ] }, "load": { "__compat": { diff --git a/api/XMLHttpRequest.json b/api/XMLHttpRequest.json index d5ee0254fe1fe2..d15beeb41dfa78 100644 --- a/api/XMLHttpRequest.json +++ b/api/XMLHttpRequest.json @@ -99,7 +99,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#handler-xhr-onreadystatechange" + } + ] } }, "readyState": { @@ -150,7 +156,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#states" + } + ] }, "constants": { "__compat": { @@ -251,7 +263,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-response-attribute" + } + ] } }, "responseText": { @@ -303,7 +321,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-responsetext-attribute" + } + ] } }, "responseType": { @@ -354,7 +378,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-responsetype-attribute" + } + ] }, "arraybuffer": { "__compat": { @@ -404,7 +434,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-responsetype-attribute" + } + ] } }, "blob": { @@ -455,7 +491,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-responsetype-attribute" + } + ] } }, "document": { @@ -506,7 +548,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-responsetype-attribute" + } + ] } }, "json": { @@ -563,7 +611,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-responsetype-attribute" + } + ] } }, "moz-blob": { @@ -615,7 +669,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-responsetype-attribute" + } + ] } } }, @@ -667,7 +727,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-responseurl-attribute" + } + ] } }, "responseXML": { @@ -720,7 +786,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-responsexml-attribute" + } + ] } }, "status": { @@ -772,7 +844,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-status-attribute" + } + ] } }, "statusText": { @@ -824,7 +902,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-statustext-attribute" + } + ] } }, "timeout": { @@ -881,7 +965,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-timeout-attribute" + } + ] } }, "upload": { @@ -932,7 +1022,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-upload-attribute" + } + ] } }, "withCredentials": { @@ -986,7 +1082,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-withcredentials-attribute" + } + ] } }, "abort": { @@ -1043,7 +1145,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-abort()-method" + } + ] } }, "getAllResponseHeaders": { @@ -1102,7 +1210,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-getAllResponseHeaders()-method" + } + ] } }, "getResponseHeader": { @@ -1161,7 +1275,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#dom-xmlhttprequest-getresponseheader" + } + ] } }, "open": { @@ -1220,7 +1340,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-open()-method" + } + ] } }, "overrideMimeType": { @@ -1277,7 +1403,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-overrideMimeType()-method" + } + ] } }, "send": { @@ -1334,7 +1466,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-send()-method" + } + ] }, "ArrayBuffer": { "__compat": { @@ -1385,7 +1523,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-send()-method" + } + ] } }, "ArrayBufferView": { @@ -1437,7 +1581,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-send()-method" + } + ] } }, "Blob": { @@ -1489,7 +1639,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-send()-method" + } + ] } }, "FormData": { @@ -1541,7 +1697,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-send()-method" + } + ] } }, "URLSearchParams": { @@ -1593,7 +1755,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-send()-method" + } + ] } } }, @@ -1707,7 +1875,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#the-setRequestHeader()-method" + } + ] } } } diff --git a/api/XMLHttpRequestEventTarget.json b/api/XMLHttpRequestEventTarget.json index 0afca3d2d4b6d8..f0f5be3fadbf5f 100644 --- a/api/XMLHttpRequestEventTarget.json +++ b/api/XMLHttpRequestEventTarget.json @@ -98,7 +98,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#handler-xhr-onabort" + } + ] } }, "onerror": { @@ -149,7 +155,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#handler-xhr-onerror" + } + ] } }, "onload": { @@ -200,7 +212,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#handler-xhr-onload" + } + ] } }, "onloadend": { @@ -302,7 +320,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#handler-xhr-onloadstart" + } + ] } }, "onprogress": { @@ -353,7 +377,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XMLHttpRequest", + "url": "https://xhr.spec.whatwg.org#handler-xhr-onload" + } + ] } }, "ontimeout": { diff --git a/api/XMLSerializer.json b/api/XMLSerializer.json index 648a843e0bc817..6399ee6496d79c 100644 --- a/api/XMLSerializer.json +++ b/api/XMLSerializer.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "DOM Parsing", + "url": "https://w3c.github.io/DOM-Parsing/#the-xmlserializer-interface" + } + ] }, "serializeToStream": { "__compat": { diff --git a/css/at-rules/charset.json b/css/at-rules/charset.json index f2688076f2bf2b..4c3c575f92bf62 100644 --- a/css/at-rules/charset.json +++ b/css/at-rules/charset.json @@ -52,7 +52,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#x57" + } + ] } } } diff --git a/css/at-rules/counter-style.json b/css/at-rules/counter-style.json index 24c1561bd4ada5..31ac2c805b224b 100644 --- a/css/at-rules/counter-style.json +++ b/css/at-rules/counter-style.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#the-counter-style-rule" + } + ] }, "additive-symbols": { "__compat": { @@ -101,7 +107,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#counter-style-symbols" + } + ] } }, "fallback": { @@ -153,7 +165,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#counter-style-fallback" + } + ] } }, "negative": { @@ -205,7 +223,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#counter-style-system" + } + ] } }, "pad": { @@ -257,7 +281,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-pad" + } + ] } }, "prefix": { @@ -309,7 +339,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-prefix" + } + ] } }, "range": { @@ -361,7 +397,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#counter-style-range" + } + ] } }, "speak-as": { @@ -413,7 +455,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#counter-style-speak-as" + } + ] } }, "suffix": { @@ -465,7 +513,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-suffix" + } + ] } }, "symbols": { @@ -517,7 +571,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#counter-style-symbols" + } + ] } }, "system": { @@ -569,7 +629,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#counter-style-system" + } + ] } } } diff --git a/css/at-rules/font-face.json b/css/at-rules/font-face.json index bfc0cd5ba9c308..f5507044aa7afa 100644 --- a/css/at-rules/font-face.json +++ b/css/at-rules/font-face.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-face-rule" + } + ] }, "WOFF": { "__compat": { @@ -278,7 +284,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Fonts", + "url": "https://drafts.csswg.org/css-fonts-4/#font-display-desc" + } + ] } }, "font-family": { @@ -329,7 +341,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-family-desc" + } + ] } }, "font-feature-settings": { @@ -464,7 +482,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Fonts", + "url": "https://drafts.csswg.org/css-fonts-4/#font-rend-desc" + } + ] } }, "font-style": { @@ -515,7 +539,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Fonts", + "url": "https://drafts.csswg.org/css-fonts-4/#font-prop-desc" + }, + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-prop-desc" + } + ] } }, "font-weight": { @@ -616,7 +650,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#src-desc" + } + ] } }, "unicode-range": { @@ -667,7 +707,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#descdef-font-face-unicode-range" + } + ] } } } diff --git a/css/at-rules/font-feature-values.json b/css/at-rules/font-feature-values.json index 4e0061fef5e72a..f5035521174f69 100644 --- a/css/at-rules/font-feature-values.json +++ b/css/at-rules/font-feature-values.json @@ -74,7 +74,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-feature-values" + } + ] }, "annotation": { "__compat": { @@ -149,7 +155,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-feature-values" + } + ] } }, "character-variant": { @@ -225,7 +237,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-feature-values" + } + ] } }, "historical-forms": { @@ -376,7 +394,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-feature-values" + } + ] } }, "styleset": { @@ -452,7 +476,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-feature-values" + } + ] } }, "stylistic": { @@ -528,7 +558,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-feature-values" + } + ] } }, "swash": { @@ -604,7 +640,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-feature-values" + } + ] } } } diff --git a/css/at-rules/import.json b/css/at-rules/import.json index c4ab84adc7c8eb..ae08dfad058d5d 100644 --- a/css/at-rules/import.json +++ b/css/at-rules/import.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Cascade", + "url": "https://drafts.csswg.org/css-cascade-3/#at-ruledef-import" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#media0" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/cascade.html#at-import" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#the-cascade" + } + ] } } } diff --git a/css/at-rules/keyframes.json b/css/at-rules/keyframes.json index 7e5d7f0de89bbf..0be97073d0fb83 100644 --- a/css/at-rules/keyframes.json +++ b/css/at-rules/keyframes.json @@ -152,7 +152,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#keyframes" + } + ] }, "ignore_important_declarations": { "__compat": { diff --git a/css/at-rules/media.json b/css/at-rules/media.json index 87c8fd8b0c9904..aa3a46b8c493de 100644 --- a/css/at-rules/media.json +++ b/css/at-rules/media.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Conditional", + "url": "https://drafts.csswg.org/css-conditional-3/#at-media" + }, + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#media" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#media0" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/media.html#at-media-rule" + } + ] }, "speech_type": { "__compat": { @@ -205,7 +223,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#descdef-media-any-hover" + } + ] } }, "any-pointer": { @@ -256,7 +280,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#descdef-media-any-pointer" + } + ] } }, "aspect-ratio": { @@ -308,7 +338,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#aspect-ratio" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#aspect-ratio" + } + ] } }, "color": { @@ -360,7 +400,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#color" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#color" + } + ] } }, "color-gamut": { @@ -412,7 +462,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#color-gamut" + } + ] } }, "color-index": { @@ -464,7 +520,17 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#color-index" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#color-index" + } + ] } }, "device-aspect-ratio": { @@ -620,7 +686,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#device-width" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#device-width" + } + ] } }, "display-mode": { @@ -674,7 +750,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Manifest", + "url": "https://w3c.github.io/manifest/#the-display-mode-media-feature" + } + ] } }, "grid": { @@ -726,7 +808,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#grid" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#grid" + } + ] } }, "height": { @@ -778,7 +870,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#height" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#height" + } + ] } }, "inverted-colors": { @@ -830,7 +932,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#inverted" + } + ] } }, "hover": { @@ -880,7 +988,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#hover" + } + ] } }, "light-level": { @@ -984,7 +1098,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#monochrome" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#monochrome" + } + ] } }, "orientation": { @@ -1036,7 +1160,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#orientation" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#orientation" + } + ] } }, "overflow-block": { @@ -1090,7 +1224,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#mf-overflow-block" + } + ] } }, "overflow-inline": { @@ -1144,7 +1284,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#mf-overflow-inline" + } + ] } }, "pointer": { @@ -1193,7 +1339,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#pointer" + } + ] } }, "prefers-reduced-motion": { @@ -1301,7 +1453,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#resolution" + } + ] } }, "scan": { @@ -1353,7 +1511,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#scan" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#scan" + } + ] } }, "scripting": { @@ -1420,7 +1588,13 @@ "experimental": true, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#scripting" + } + ] } }, "update": { @@ -1472,7 +1646,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#update" + } + ] } }, "width": { @@ -1524,7 +1704,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-4/#width" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#width" + } + ] } }, "-moz-device-pixel-ratio": { @@ -1710,7 +1900,17 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Compat", + "url": "https://compat.spec.whatwg.org#css-media-queries-webkit-device-pixel-ratio" + }, + { + "name": "", + "url": "https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/OtherStandardCSS3Features.html#//apple_ref/doc/uid/TP40007601-SW3" + } + ] } }, "-webkit-max-device-pixel-ratio": { @@ -1792,7 +1992,17 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Compat", + "url": "https://compat.spec.whatwg.org#css-media-queries-webkit-device-pixel-ratio" + }, + { + "name": "", + "url": "https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/OtherStandardCSS3Features.html#//apple_ref/doc/uid/TP40007601-SW3" + } + ] } }, "-webkit-min-device-pixel-ratio": { @@ -1880,7 +2090,17 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Compat", + "url": "https://compat.spec.whatwg.org#css-media-queries-webkit-device-pixel-ratio" + }, + { + "name": "", + "url": "https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/OtherStandardCSS3Features.html#//apple_ref/doc/uid/TP40007601-SW3" + } + ] } }, "-webkit-transform-2d": { @@ -1996,7 +2216,17 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Compat", + "url": "https://compat.spec.whatwg.org#css-media-queries-webkit-transform-3d" + }, + { + "name": "", + "url": "https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/OtherStandardCSS3Features.html#//apple_ref/doc/uid/TP40007601-SW3" + } + ] } }, "-webkit-transition": { diff --git a/css/at-rules/namespace.json b/css/at-rules/namespace.json index cab9e133f46132..a355823a505e5d 100644 --- a/css/at-rules/namespace.json +++ b/css/at-rules/namespace.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Namespaces", + "url": "https://drafts.csswg.org/css-namespaces-3/#declaration" + } + ] } } } diff --git a/css/at-rules/page.json b/css/at-rules/page.json index 3305baee409b84..542ab4740cd195 100644 --- a/css/at-rules/page.json +++ b/css/at-rules/page.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#logical-page" + }, + { + "name": "CSS3 Paged Media", + "url": "https://drafts.csswg.org/css-page-3/#at-page-rule" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/page.html#page-selectors" + } + ] }, "bleed": { "__compat": { @@ -101,7 +115,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Paged Media", + "url": "https://drafts.csswg.org/css-page-3/#bleed" + } + ] } }, "marks": { @@ -153,7 +173,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Paged Media", + "url": "https://drafts.csswg.org/css-page-3/#marks" + } + ] } }, "size": { @@ -205,7 +231,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Paged Media", + "url": "https://drafts.csswg.org/css-page-3/#size" + } + ] } } } diff --git a/css/at-rules/supports.json b/css/at-rules/supports.json index 485fc0fb83caf3..b0e9d2889d5347 100644 --- a/css/at-rules/supports.json +++ b/css/at-rules/supports.json @@ -76,7 +76,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Conditional", + "url": "https://drafts.csswg.org/css-conditional-3/#at-supports" + } + ] } } } diff --git a/css/at-rules/viewport.json b/css/at-rules/viewport.json index 9437938e81817b..6d2f7f2a06edd9 100644 --- a/css/at-rules/viewport.json +++ b/css/at-rules/viewport.json @@ -97,7 +97,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Round Display", + "url": "https://drafts.csswg.org/css-round-display/#extending-viewport-rule" + }, + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#the-atviewport-rule" + } + ] }, "height": { "__compat": { @@ -161,7 +171,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#descdef-viewport-height" + } + ] } }, "max-height": { @@ -226,7 +242,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#descdef-viewport-max-height" + } + ] } }, "max-width": { @@ -291,7 +313,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#descdef-viewport-max-width" + } + ] } }, "max-zoom": { @@ -346,7 +374,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#max-zoom-desc" + } + ] } }, "min-height": { @@ -411,7 +445,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#descdef-viewport-min-height" + } + ] } }, "min-width": { @@ -470,7 +510,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#descdef-viewport-min-width" + } + ] } }, "min-zoom": { @@ -525,7 +571,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#min-zoom-desc" + } + ] } }, "orientation": { @@ -579,7 +631,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#the-lsquoorientationrsquo-descriptor" + } + ] } }, "user-zoom": { @@ -634,7 +692,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#the-lsquouser-zoomrsquo-descriptor" + } + ] } }, "viewport-fit": { @@ -653,7 +717,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Round Display", + "url": "https://drafts.csswg.org/css-round-display/#viewport-fit-descriptor" + } + ] } }, "width": { @@ -718,7 +788,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#descdef-viewport-min-width" + } + ] } }, "zoom": { @@ -771,7 +847,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Device", + "url": "https://drafts.csswg.org/css-device-adapt/#zoom-desc" + } + ] } } } diff --git a/css/properties/-webkit-text-fill-color.json b/css/properties/-webkit-text-fill-color.json index 878fb7c7bbb45c..acba433cb25c7d 100644 --- a/css/properties/-webkit-text-fill-color.json +++ b/css/properties/-webkit-text-fill-color.json @@ -73,7 +73,17 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Compat", + "url": "https://compat.spec.whatwg.org#the-webkit-text-fill-color" + }, + { + "name": "", + "url": "https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-text-fill-color" + } + ] } } } diff --git a/css/properties/-webkit-text-stroke-color.json b/css/properties/-webkit-text-stroke-color.json index ddd549fd792b3d..3a0ac83eb65eaa 100644 --- a/css/properties/-webkit-text-stroke-color.json +++ b/css/properties/-webkit-text-stroke-color.json @@ -73,7 +73,17 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Compat", + "url": "https://compat.spec.whatwg.org#the-webkit-text-stroke-color" + }, + { + "name": "", + "url": "https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-text-stroke-color" + } + ] } } } diff --git a/css/properties/-webkit-text-stroke-width.json b/css/properties/-webkit-text-stroke-width.json index ca0d11c876cb8e..37edb7ede15743 100644 --- a/css/properties/-webkit-text-stroke-width.json +++ b/css/properties/-webkit-text-stroke-width.json @@ -70,7 +70,17 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Compat", + "url": "https://compat.spec.whatwg.org#the-webkit-text-stroke-width" + }, + { + "name": "", + "url": "https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-text-stroke-width" + } + ] } } } diff --git a/css/properties/-webkit-text-stroke.json b/css/properties/-webkit-text-stroke.json index c23effa42c293e..52b57f5bc13ff5 100644 --- a/css/properties/-webkit-text-stroke.json +++ b/css/properties/-webkit-text-stroke.json @@ -70,7 +70,17 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Compat", + "url": "https://compat.spec.whatwg.org#the-webkit-text-stroke" + }, + { + "name": "", + "url": "https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-_webkit_text_stroke" + } + ] } } } diff --git a/css/properties/align-content.json b/css/properties/align-content.json index 984991bccfac35..45a79d718792c7 100644 --- a/css/properties/align-content.json +++ b/css/properties/align-content.json @@ -127,7 +127,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-align-content" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#align-content" + } + ] }, "space-evenly": { "__compat": { @@ -571,7 +581,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-align-content" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#align-content" + } + ] } } } diff --git a/css/properties/align-items.json b/css/properties/align-items.json index 495743d6b3ff4c..b1be407e561c55 100644 --- a/css/properties/align-items.json +++ b/css/properties/align-items.json @@ -157,7 +157,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-align-items" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#propdef-align-items" + } + ] }, "first_last_baseline": { "__compat": { @@ -410,7 +420,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-align-items" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#propdef-align-items" + } + ] } } } diff --git a/css/properties/align-self.json b/css/properties/align-self.json index 9753ee3e81df13..a012dc02fce3af 100644 --- a/css/properties/align-self.json +++ b/css/properties/align-self.json @@ -119,7 +119,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-align-self" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#propdef-align-self" + } + ] }, "start_end": { "__compat": { @@ -480,7 +490,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-align-self" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#propdef-align-self" + } + ] } } } diff --git a/css/properties/all.json b/css/properties/all.json index c1a6bde861a5b0..ffb943bb2a6bdd 100644 --- a/css/properties/all.json +++ b/css/properties/all.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Cascade", + "url": "https://drafts.csswg.org/css-cascade/#all-shorthand" + }, + { + "name": "CSS3 Cascade", + "url": "https://drafts.csswg.org/css-cascade-3/#all-shorthand" + } + ] }, "revert": { "__compat": { diff --git a/css/properties/animation-delay.json b/css/properties/animation-delay.json index 89a2e6241b45fe..262f4f8c345970 100644 --- a/css/properties/animation-delay.json +++ b/css/properties/animation-delay.json @@ -152,7 +152,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#animation-delay" + } + ] } } } diff --git a/css/properties/animation-fill-mode.json b/css/properties/animation-fill-mode.json index 9e14965117ca56..b0b3e8f73574c6 100644 --- a/css/properties/animation-fill-mode.json +++ b/css/properties/animation-fill-mode.json @@ -169,7 +169,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#animation-fill-mode" + } + ] } } } diff --git a/css/properties/animation-iteration-count.json b/css/properties/animation-iteration-count.json index 1d00296b84d272..c0820f011c72d7 100644 --- a/css/properties/animation-iteration-count.json +++ b/css/properties/animation-iteration-count.json @@ -169,7 +169,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#animation-iteration-count" + } + ] } } } diff --git a/css/properties/animation-name.json b/css/properties/animation-name.json index f39bb2cccb16cd..8739e1312fbc09 100644 --- a/css/properties/animation-name.json +++ b/css/properties/animation-name.json @@ -169,7 +169,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#animation-name" + } + ] } } } diff --git a/css/properties/animation-timing-function.json b/css/properties/animation-timing-function.json index 48bf3a958e5cc7..e7f82d45431d25 100644 --- a/css/properties/animation-timing-function.json +++ b/css/properties/animation-timing-function.json @@ -169,7 +169,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#animation-timing-function" + } + ] } } } diff --git a/css/properties/animation.json b/css/properties/animation.json index 59d9d664f6c786..7169369e593041 100644 --- a/css/properties/animation.json +++ b/css/properties/animation.json @@ -170,7 +170,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#animation" + } + ] } } } diff --git a/css/properties/appearance.json b/css/properties/appearance.json index 89ba3b25c0ddb7..aaae64daaffcbd 100644 --- a/css/properties/appearance.json +++ b/css/properties/appearance.json @@ -101,7 +101,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Basic UI", + "url": "https://drafts.csswg.org/css-ui-4/#appearance-switching" + } + ] }, "none": { "__compat": { diff --git a/css/properties/azimuth.json b/css/properties/azimuth.json index f77138f6f590eb..494f0e259b4c25 100644 --- a/css/properties/azimuth.json +++ b/css/properties/azimuth.json @@ -46,7 +46,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/aural.html#spatial-props" + } + ] } } } diff --git a/css/properties/backdrop-filter.json b/css/properties/backdrop-filter.json index a656d8d4947e0b..3ce57de02ac515 100644 --- a/css/properties/backdrop-filter.json +++ b/css/properties/backdrop-filter.json @@ -70,7 +70,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 2.0", + "url": "https://drafts.fxtf.org/filter-effects-2/#BackdropFilterProperty" + } + ] } } } diff --git a/css/properties/backface-visibility.json b/css/properties/backface-visibility.json index eec0ad0590ad11..d84817e53e748f 100644 --- a/css/properties/backface-visibility.json +++ b/css/properties/backface-visibility.json @@ -110,7 +110,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Transforms 2", + "url": "https://drafts.csswg.org/css-transforms-2/#propdef-backface-visibility" + } + ] } } } diff --git a/css/properties/background-attachment.json b/css/properties/background-attachment.json index e9731a8ded9bf9..c16e716a2855c4 100644 --- a/css/properties/background-attachment.json +++ b/css/properties/background-attachment.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-background-attachment" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/colors.html#propdef-background-attachment" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#background-attachment" + } + ] }, "multiple_backgrounds": { "__compat": { diff --git a/css/properties/background-blend-mode.json b/css/properties/background-blend-mode.json index fd20ef4b3755c4..feee1461b882a3 100644 --- a/css/properties/background-blend-mode.json +++ b/css/properties/background-blend-mode.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Compositing", + "url": "https://drafts.fxtf.org/compositing-1/#background-blend-mode" + } + ] } } } diff --git a/css/properties/background-clip.json b/css/properties/background-clip.json index b9bd7245ded335..a027eb284ceda9 100644 --- a/css/properties/background-clip.json +++ b/css/properties/background-clip.json @@ -107,7 +107,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-background-clip" + }, + { + "name": "CSS4 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-4/#background-clip" + } + ] }, "content-box": { "__compat": { diff --git a/css/properties/background-color.json b/css/properties/background-color.json index 11d47efdc876d1..f72a176aa395cb 100644 --- a/css/properties/background-color.json +++ b/css/properties/background-color.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#background-color" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/colors.html#propdef-background-color" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#background-color" + } + ] }, "alpha_ch_for_hex": { "__compat": { diff --git a/css/properties/background-image.json b/css/properties/background-image.json index 00c352d88d7d2b..31f78e5c132f3d 100644 --- a/css/properties/background-image.json +++ b/css/properties/background-image.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#background-image" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/colors.html#propdef-background-image" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#background-image" + } + ] }, "multiple_backgrounds": { "__compat": { diff --git a/css/properties/background-origin.json b/css/properties/background-origin.json index e15b1c8352ebf4..e7b7ad4baae879 100644 --- a/css/properties/background-origin.json +++ b/css/properties/background-origin.json @@ -120,7 +120,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-background-origin" + } + ] }, "content-box": { "__compat": { diff --git a/css/properties/background-position-x.json b/css/properties/background-position-x.json index 70e2daeb6fd3a5..b373ca63224deb 100644 --- a/css/properties/background-position-x.json +++ b/css/properties/background-position-x.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-4/#background-position-longhands" + } + ] }, "two_value_syntax": { "__compat": { diff --git a/css/properties/background-position-y.json b/css/properties/background-position-y.json index e48684ee10ee0c..4f2360d32ed88a 100644 --- a/css/properties/background-position-y.json +++ b/css/properties/background-position-y.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-4/#background-position-longhands" + } + ] }, "2_value_syntax": { "__compat": { diff --git a/css/properties/background-position.json b/css/properties/background-position.json index abae6caaa829e1..f5f1932c9f1300 100644 --- a/css/properties/background-position.json +++ b/css/properties/background-position.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#background-position" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/colors.html#propdef-background-position" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#background-position" + } + ] }, "multiple_backgrounds": { "__compat": { diff --git a/css/properties/background-repeat.json b/css/properties/background-repeat.json index 0bb0c6ecadd1e5..48c8d52ee0eecc 100644 --- a/css/properties/background-repeat.json +++ b/css/properties/background-repeat.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-background-repeat" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/colors.html#propdef-background-repeat" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#background-repeat" + } + ] }, "multiple_backgrounds": { "__compat": { diff --git a/css/properties/background-size.json b/css/properties/background-size.json index 75ae22e3d79312..48d8fead7e73b0 100644 --- a/css/properties/background-size.json +++ b/css/properties/background-size.json @@ -107,7 +107,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-background-size" + } + ] }, "contain_and_cover": { "__compat": { diff --git a/css/properties/background.json b/css/properties/background.json index 015403020b7fe0..c29717f62ca4bc 100644 --- a/css/properties/background.json +++ b/css/properties/background.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-background" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/colors.html#propdef-background" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#background" + } + ] }, "multiple_backgrounds": { "__compat": { diff --git a/css/properties/block-size.json b/css/properties/block-size.json index 7a317f3103e7fb..64ef72417d1b86 100644 --- a/css/properties/block-size.json +++ b/css/properties/block-size.json @@ -75,7 +75,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#logical-dimension-properties" + } + ] } } } diff --git a/css/properties/border-block-end-color.json b/css/properties/border-block-end-color.json index 38dea4839dbcfc..8f41bd4ef45880 100644 --- a/css/properties/border-block-end-color.json +++ b/css/properties/border-block-end-color.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-block-end-color" + } + ] } } } diff --git a/css/properties/border-block-end-style.json b/css/properties/border-block-end-style.json index 83316f5c7a4f2a..125e23c41a0d9a 100644 --- a/css/properties/border-block-end-style.json +++ b/css/properties/border-block-end-style.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-block-end-style" + } + ] } } } diff --git a/css/properties/border-block-end-width.json b/css/properties/border-block-end-width.json index 4f8194d53b1b02..0f901bf41f7f1f 100644 --- a/css/properties/border-block-end-width.json +++ b/css/properties/border-block-end-width.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-block-end-width" + } + ] } } } diff --git a/css/properties/border-block-end.json b/css/properties/border-block-end.json index 687e0ba2a9d731..78ed39eb846fb6 100644 --- a/css/properties/border-block-end.json +++ b/css/properties/border-block-end.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-block-end" + } + ] } } } diff --git a/css/properties/border-block-start-color.json b/css/properties/border-block-start-color.json index d3fd9f797e1716..573f0e16bdd1ff 100644 --- a/css/properties/border-block-start-color.json +++ b/css/properties/border-block-start-color.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-block-start-color" + } + ] } } } diff --git a/css/properties/border-block-start-style.json b/css/properties/border-block-start-style.json index ca0092949001a0..b1fee2443b74ee 100644 --- a/css/properties/border-block-start-style.json +++ b/css/properties/border-block-start-style.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-block-start-style" + } + ] } } } diff --git a/css/properties/border-block-start-width.json b/css/properties/border-block-start-width.json index 6287a1385625b6..569c8126a91e0b 100644 --- a/css/properties/border-block-start-width.json +++ b/css/properties/border-block-start-width.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-block-start-width" + } + ] } } } diff --git a/css/properties/border-block-start.json b/css/properties/border-block-start.json index d4cdcf82dba08e..6745dbf011f76a 100644 --- a/css/properties/border-block-start.json +++ b/css/properties/border-block-start.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-block-start" + } + ] } } } diff --git a/css/properties/border-bottom-color.json b/css/properties/border-bottom-color.json index 6131a4a223c390..950f87e1a83130 100644 --- a/css/properties/border-bottom-color.json +++ b/css/properties/border-bottom-color.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-bottom-color" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-color-properties" + } + ] } } } diff --git a/css/properties/border-bottom-left-radius.json b/css/properties/border-bottom-left-radius.json index c6ebded64d1c3b..181e3eb2b739c1 100644 --- a/css/properties/border-bottom-left-radius.json +++ b/css/properties/border-bottom-left-radius.json @@ -82,7 +82,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-bottom-left-radius" + } + ] }, "percentages": { "__compat": { diff --git a/css/properties/border-bottom-right-radius.json b/css/properties/border-bottom-right-radius.json index 3b3ed74504698b..e287397442394c 100644 --- a/css/properties/border-bottom-right-radius.json +++ b/css/properties/border-bottom-right-radius.json @@ -82,7 +82,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-bottom-right-radius" + } + ] }, "percentages": { "__compat": { diff --git a/css/properties/border-bottom-style.json b/css/properties/border-bottom-style.json index 4a5f02cf5a55a5..bae84441a8c250 100644 --- a/css/properties/border-bottom-style.json +++ b/css/properties/border-bottom-style.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-bottom-style" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-style-properties" + } + ] } } } diff --git a/css/properties/border-bottom-width.json b/css/properties/border-bottom-width.json index 5c37f409583206..7fd0a876dd7c69 100644 --- a/css/properties/border-bottom-width.json +++ b/css/properties/border-bottom-width.json @@ -43,7 +43,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-width" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-width-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border-left-width" + } + ] } } } diff --git a/css/properties/border-bottom.json b/css/properties/border-bottom.json index 94e5f12b7cc6a8..c503aac21ed4e2 100644 --- a/css/properties/border-bottom.json +++ b/css/properties/border-bottom.json @@ -43,7 +43,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-bottom" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#propdef-border-bottom" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border-bottom" + } + ] } } } diff --git a/css/properties/border-collapse.json b/css/properties/border-collapse.json index 9094d5abbd5e75..2bfacdebb5c738 100644 --- a/css/properties/border-collapse.json +++ b/css/properties/border-collapse.json @@ -43,7 +43,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/tables.html#borders" + } + ] } } } diff --git a/css/properties/border-color.json b/css/properties/border-color.json index a58902a5252417..9fedb29d5de5e2 100644 --- a/css/properties/border-color.json +++ b/css/properties/border-color.json @@ -45,7 +45,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-color" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-color-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border-color" + } + ] } } } diff --git a/css/properties/border-image-outset.json b/css/properties/border-image-outset.json index 6e8cce672ab0ce..ca6946733bedda 100644 --- a/css/properties/border-image-outset.json +++ b/css/properties/border-image-outset.json @@ -34,7 +34,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-image-outset" + } + ] } } } diff --git a/css/properties/border-image-repeat.json b/css/properties/border-image-repeat.json index 000ab422d221e2..c0d9e5d8fd03a5 100644 --- a/css/properties/border-image-repeat.json +++ b/css/properties/border-image-repeat.json @@ -37,7 +37,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-image-repeat" + } + ] }, "round": { "__compat": { diff --git a/css/properties/border-image-slice.json b/css/properties/border-image-slice.json index a0eee54225889d..ffd9debf994aad 100644 --- a/css/properties/border-image-slice.json +++ b/css/properties/border-image-slice.json @@ -56,7 +56,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-image-slice" + } + ] } } } diff --git a/css/properties/border-image-source.json b/css/properties/border-image-source.json index f7ef7dae35966d..f61ad9ddf45af0 100644 --- a/css/properties/border-image-source.json +++ b/css/properties/border-image-source.json @@ -34,7 +34,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-image-source" + } + ] } } } diff --git a/css/properties/border-image-width.json b/css/properties/border-image-width.json index f8d24e4f3010f7..4bf07b7375631f 100644 --- a/css/properties/border-image-width.json +++ b/css/properties/border-image-width.json @@ -34,7 +34,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-image-width" + } + ] } } } diff --git a/css/properties/border-image.json b/css/properties/border-image.json index b5f15abc018dd2..2804ba55ed4da5 100644 --- a/css/properties/border-image.json +++ b/css/properties/border-image.json @@ -135,7 +135,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-image" + } + ] }, "optional_border_image_slice": { "__compat": { diff --git a/css/properties/border-inline-end-color.json b/css/properties/border-inline-end-color.json index d6befc1db81f6e..1602f8c045c658 100644 --- a/css/properties/border-inline-end-color.json +++ b/css/properties/border-inline-end-color.json @@ -77,7 +77,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-inline-end-color" + } + ] } } } diff --git a/css/properties/border-inline-end-style.json b/css/properties/border-inline-end-style.json index 5605308b3acc91..bb03d64777e621 100644 --- a/css/properties/border-inline-end-style.json +++ b/css/properties/border-inline-end-style.json @@ -77,7 +77,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-inline-end-style" + } + ] } } } diff --git a/css/properties/border-inline-end-width.json b/css/properties/border-inline-end-width.json index aee15e4b3c9965..0544d53bc3f81d 100644 --- a/css/properties/border-inline-end-width.json +++ b/css/properties/border-inline-end-width.json @@ -77,7 +77,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-inline-end-width" + } + ] } } } diff --git a/css/properties/border-inline-end.json b/css/properties/border-inline-end.json index 65e8c6c4225143..a61fa603ce7a99 100644 --- a/css/properties/border-inline-end.json +++ b/css/properties/border-inline-end.json @@ -61,7 +61,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-inline-end" + } + ] } } } diff --git a/css/properties/border-inline-start-color.json b/css/properties/border-inline-start-color.json index cfde6283fabe90..3432e743157fc9 100644 --- a/css/properties/border-inline-start-color.json +++ b/css/properties/border-inline-start-color.json @@ -77,7 +77,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-inline-start-color" + } + ] } } } diff --git a/css/properties/border-inline-start-style.json b/css/properties/border-inline-start-style.json index d3361792f63844..4ab4ca537d5c01 100644 --- a/css/properties/border-inline-start-style.json +++ b/css/properties/border-inline-start-style.json @@ -77,7 +77,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-inline-start-style" + } + ] } } } diff --git a/css/properties/border-inline-start-width.json b/css/properties/border-inline-start-width.json index b8f316e80a0bdd..a814099d3fa0a7 100644 --- a/css/properties/border-inline-start-width.json +++ b/css/properties/border-inline-start-width.json @@ -69,7 +69,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-inline-start-width" + } + ] } } } diff --git a/css/properties/border-inline-start.json b/css/properties/border-inline-start.json index 47ad66a7de88ce..2dd12e541084a2 100644 --- a/css/properties/border-inline-start.json +++ b/css/properties/border-inline-start.json @@ -61,7 +61,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-border-inline-start" + } + ] } } } diff --git a/css/properties/border-left-color.json b/css/properties/border-left-color.json index b39af001f0a768..1505e8928458b0 100644 --- a/css/properties/border-left-color.json +++ b/css/properties/border-left-color.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-left-color" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#propdef-border-left-color" + } + ] } } } diff --git a/css/properties/border-left-style.json b/css/properties/border-left-style.json index eaf8b2125e39e4..75bc9bb5708048 100644 --- a/css/properties/border-left-style.json +++ b/css/properties/border-left-style.json @@ -51,7 +51,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-style" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-style-properties" + } + ] } } } diff --git a/css/properties/border-left-width.json b/css/properties/border-left-width.json index 8e1dbb100bb1fd..92ab24ca20abba 100644 --- a/css/properties/border-left-width.json +++ b/css/properties/border-left-width.json @@ -43,7 +43,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-width" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-width-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border-left-width" + } + ] } } } diff --git a/css/properties/border-left.json b/css/properties/border-left.json index e818c975de696e..10a2908f05081a 100644 --- a/css/properties/border-left.json +++ b/css/properties/border-left.json @@ -43,7 +43,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-left" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#propdef-border-left" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border-left" + } + ] } } } diff --git a/css/properties/border-radius.json b/css/properties/border-radius.json index d8d45fcb065e93..792568deb12cea 100644 --- a/css/properties/border-radius.json +++ b/css/properties/border-radius.json @@ -89,7 +89,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-radius" + } + ] }, "elliptical_borders": { "__compat": { diff --git a/css/properties/border-right-color.json b/css/properties/border-right-color.json index cf878bf154cebe..0be2b705e9eae3 100644 --- a/css/properties/border-right-color.json +++ b/css/properties/border-right-color.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-color" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-color-properties" + } + ] } } } diff --git a/css/properties/border-right-style.json b/css/properties/border-right-style.json index 6d60385916b2f4..43b1de030fc23c 100644 --- a/css/properties/border-right-style.json +++ b/css/properties/border-right-style.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-style" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-style-properties" + } + ] } } } diff --git a/css/properties/border-right-width.json b/css/properties/border-right-width.json index a4fff6daa43535..8f8909b1122436 100644 --- a/css/properties/border-right-width.json +++ b/css/properties/border-right-width.json @@ -43,7 +43,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-width" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-width-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border-left-width" + } + ] } } } diff --git a/css/properties/border-right.json b/css/properties/border-right.json index 21ec12e64225e2..cf6a7ba30f96c0 100644 --- a/css/properties/border-right.json +++ b/css/properties/border-right.json @@ -43,7 +43,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-right" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#propdef-border-right" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border-right" + } + ] } } } diff --git a/css/properties/border-spacing.json b/css/properties/border-spacing.json index 8b4e00ad29d35d..5c99e0e5e2d76b 100644 --- a/css/properties/border-spacing.json +++ b/css/properties/border-spacing.json @@ -34,7 +34,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/tables.html#separated-borders" + } + ] } } } diff --git a/css/properties/border-top-color.json b/css/properties/border-top-color.json index 6ddc02b0fb2d54..a7088d47b8913e 100644 --- a/css/properties/border-top-color.json +++ b/css/properties/border-top-color.json @@ -45,7 +45,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-top-color" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-color-properties" + } + ] } } } diff --git a/css/properties/border-top-left-radius.json b/css/properties/border-top-left-radius.json index 24fcf3bf9bf0f0..a6c5883256a312 100644 --- a/css/properties/border-top-left-radius.json +++ b/css/properties/border-top-left-radius.json @@ -82,7 +82,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-radius" + } + ] }, "percentages": { "__compat": { diff --git a/css/properties/border-top-right-radius.json b/css/properties/border-top-right-radius.json index d00740995d59bb..8af1dd77672a2d 100644 --- a/css/properties/border-top-right-radius.json +++ b/css/properties/border-top-right-radius.json @@ -82,7 +82,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-radius" + } + ] }, "percentages": { "__compat": { diff --git a/css/properties/border-top-style.json b/css/properties/border-top-style.json index 47e27e796f554d..01cafa22f43147 100644 --- a/css/properties/border-top-style.json +++ b/css/properties/border-top-style.json @@ -36,7 +36,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-style" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-style-properties" + } + ] } } } diff --git a/css/properties/border-top-width.json b/css/properties/border-top-width.json index 83cfd63bc606d2..f46b504d8724a5 100644 --- a/css/properties/border-top-width.json +++ b/css/properties/border-top-width.json @@ -43,7 +43,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-width" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-width-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border-left-width" + } + ] } } } diff --git a/css/properties/border-top.json b/css/properties/border-top.json index 2ea8da72058cf4..e1365fc4eaf761 100644 --- a/css/properties/border-top.json +++ b/css/properties/border-top.json @@ -43,7 +43,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#border-top" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#propdef-border-top" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border-top" + } + ] } } } diff --git a/css/properties/border-width.json b/css/properties/border-width.json index 25100cfc3c68ad..714ee2a6afd454 100644 --- a/css/properties/border-width.json +++ b/css/properties/border-width.json @@ -43,7 +43,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-width" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-width-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border-width" + } + ] } } } diff --git a/css/properties/border.json b/css/properties/border.json index 0fb35615ee61ed..0f7a071789bb3b 100644 --- a/css/properties/border.json +++ b/css/properties/border.json @@ -37,7 +37,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#the-border-shorthands" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#border-shorthand-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#border" + } + ] } } } diff --git a/css/properties/bottom.json b/css/properties/bottom.json index ec93bf5943164e..463dd5278f1b1c 100644 --- a/css/properties/bottom.json +++ b/css/properties/bottom.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS3 Positioning", + "url": "https://drafts.csswg.org/css-position-3/#propdef-bottom" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#choose-position" + } + ] } } } diff --git a/css/properties/box-decoration-break.json b/css/properties/box-decoration-break.json index e60fc197195336..7569c52431e389 100644 --- a/css/properties/box-decoration-break.json +++ b/css/properties/box-decoration-break.json @@ -84,7 +84,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fragmentation", + "url": "https://drafts.csswg.org/css-break-3/#break-decoration" + } + ] } } } diff --git a/css/properties/box-shadow.json b/css/properties/box-shadow.json index 30db6bf64fb0be..b588ef4b8dd4b8 100644 --- a/css/properties/box-shadow.json +++ b/css/properties/box-shadow.json @@ -101,7 +101,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#box-shadow" + } + ] }, "multiple_shadows": { "__compat": { diff --git a/css/properties/box-sizing.json b/css/properties/box-sizing.json index 0ee362e0fe5893..f44b8060cb1996 100644 --- a/css/properties/box-sizing.json +++ b/css/properties/box-sizing.json @@ -127,7 +127,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#box-sizing" + } + ] }, "padding-box": { "__compat": { diff --git a/css/properties/break-after.json b/css/properties/break-after.json index 7908216a0da005..017f059638938d 100644 --- a/css/properties/break-after.json +++ b/css/properties/break-after.json @@ -55,7 +55,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fragmentation", + "url": "https://drafts.csswg.org/css-break-3/#break-between" + }, + { + "name": "CSS3 Regions", + "url": "https://drafts.csswg.org/css-regions-1/#region-flow-break" + }, + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#break-before-break-after-break-inside" + } + ] }, "column": { "__compat": { diff --git a/css/properties/break-before.json b/css/properties/break-before.json index 844c8e26b9bd4b..4c70ca9d5a345a 100644 --- a/css/properties/break-before.json +++ b/css/properties/break-before.json @@ -55,7 +55,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fragmentation", + "url": "https://drafts.csswg.org/css-break-3/#break-between" + }, + { + "name": "CSS3 Regions", + "url": "https://drafts.csswg.org/css-regions-1/#region-flow-break" + }, + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#break-before-break-after-break-inside" + } + ] }, "column": { "__compat": { diff --git a/css/properties/break-inside.json b/css/properties/break-inside.json index 013e41d6908917..450468949b7dbe 100644 --- a/css/properties/break-inside.json +++ b/css/properties/break-inside.json @@ -55,7 +55,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fragmentation", + "url": "https://drafts.csswg.org/css-break-3/#break-within" + }, + { + "name": "CSS3 Regions", + "url": "https://drafts.csswg.org/css-regions-1/#region-flow-break" + }, + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#break-before-break-after-break-inside" + } + ] }, "column": { "__compat": { diff --git a/css/properties/caption-side.json b/css/properties/caption-side.json index d2e36d83f1dddb..2c32e8984db32d 100644 --- a/css/properties/caption-side.json +++ b/css/properties/caption-side.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#caption-side" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/tables.html#caption-position" + } + ] }, "non_standard_values": { "__compat": { diff --git a/css/properties/caret-color.json b/css/properties/caret-color.json index c127f00e46d8e6..03640855abb0c2 100644 --- a/css/properties/caret-color.json +++ b/css/properties/caret-color.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#propdef-caret-color" + } + ] } } } diff --git a/css/properties/clear.json b/css/properties/clear.json index 580472f2895149..870fec45a89982 100644 --- a/css/properties/clear.json +++ b/css/properties/clear.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#float-clear" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#flow-control" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#clear" + } + ] }, "flow_relative_values": { "__compat": { diff --git a/css/properties/clip-path.json b/css/properties/clip-path.json index 29f8860c9edc82..69748ae6e123e1 100644 --- a/css/properties/clip-path.json +++ b/css/properties/clip-path.json @@ -68,7 +68,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-clip-path" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/masking.html#ClipPathProperty" + } + ] }, "svg": { "__compat": { diff --git a/css/properties/color-adjust.json b/css/properties/color-adjust.json index 4221ef52a1efac..d1cb0c70660867 100644 --- a/css/properties/color-adjust.json +++ b/css/properties/color-adjust.json @@ -52,7 +52,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Colors", + "url": "https://drafts.csswg.org/css-color/#color-adjust" + } + ] } } } diff --git a/css/properties/color.json b/css/properties/color.json index 0fb84aade83d2c..fdb7235ea1ddad 100644 --- a/css/properties/color.json +++ b/css/properties/color.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Colors", + "url": "https://drafts.csswg.org/css-color/#the-color-property" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS3 Colors", + "url": "https://drafts.csswg.org/css-color-3/#color" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/colors.html#colors" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#color" + } + ] }, "keyword_color_values": { "__compat": { @@ -101,7 +123,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Colors", + "url": "https://drafts.csswg.org/css-color/#colorunits" + }, + { + "name": "CSS3 Colors", + "url": "https://drafts.csswg.org/css-color-3/#colorunits" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#value-def-color" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#color-units" + } + ] } }, "rgb_hexadecimal_notation": { @@ -153,7 +193,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Colors", + "url": "https://drafts.csswg.org/css-color/#colorunits" + }, + { + "name": "CSS3 Colors", + "url": "https://drafts.csswg.org/css-color-3/#colorunits" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#value-def-color" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#color-units" + } + ] } }, "rgb_functional_notation": { @@ -205,7 +263,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Colors", + "url": "https://drafts.csswg.org/css-color/#colorunits" + }, + { + "name": "CSS3 Colors", + "url": "https://drafts.csswg.org/css-color-3/#colorunits" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#value-def-color" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#color-units" + } + ] } }, "hsl": { @@ -257,7 +333,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Colors", + "url": "https://drafts.csswg.org/css-color/#colorunits" + }, + { + "name": "CSS3 Colors", + "url": "https://drafts.csswg.org/css-color-3/#colorunits" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#value-def-color" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#color-units" + } + ] } }, "alpha": { @@ -309,7 +403,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Colors", + "url": "https://drafts.csswg.org/css-color/#colorunits" + }, + { + "name": "CSS3 Colors", + "url": "https://drafts.csswg.org/css-color-3/#colorunits" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#value-def-color" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#color-units" + } + ] } }, "currentcolor": { @@ -361,7 +473,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Colors", + "url": "https://drafts.csswg.org/css-color/#colorunits" + }, + { + "name": "CSS3 Colors", + "url": "https://drafts.csswg.org/css-color-3/#colorunits" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#value-def-color" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#color-units" + } + ] } }, "transparent": { @@ -413,7 +543,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Colors", + "url": "https://drafts.csswg.org/css-color/#colorunits" + }, + { + "name": "CSS3 Colors", + "url": "https://drafts.csswg.org/css-color-3/#colorunits" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#value-def-color" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#color-units" + } + ] } }, "rebeccapurple": { diff --git a/css/properties/column-count.json b/css/properties/column-count.json index 53b853d2eb0ff9..a8a1926a16fec7 100644 --- a/css/properties/column-count.json +++ b/css/properties/column-count.json @@ -98,7 +98,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#cc" + } + ] }, "on_display_table_caption": { "__compat": { diff --git a/css/properties/column-fill.json b/css/properties/column-fill.json index 6e402a7af6b8fd..ec6807811393f3 100644 --- a/css/properties/column-fill.json +++ b/css/properties/column-fill.json @@ -46,7 +46,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#cf" + } + ] } } } diff --git a/css/properties/column-gap.json b/css/properties/column-gap.json index 1a70e536c8db8c..3677f2c77b2ff8 100644 --- a/css/properties/column-gap.json +++ b/css/properties/column-gap.json @@ -60,7 +60,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#column-row-gap" + }, + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#gutters" + }, + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#column-gap" + } + ] } }, "grid_context": { @@ -234,7 +248,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#column-row-gap" + }, + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#gutters" + }, + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#column-gap" + } + ] } }, "multicol_context": { @@ -370,7 +398,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#column-row-gap" + }, + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#gutters" + }, + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#column-gap" + } + ] }, "percentage_values": { "__compat": { diff --git a/css/properties/column-rule-color.json b/css/properties/column-rule-color.json index 55c286f93c75cd..327b48d4dc907a 100644 --- a/css/properties/column-rule-color.json +++ b/css/properties/column-rule-color.json @@ -92,7 +92,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#crc" + } + ] } } } diff --git a/css/properties/column-rule-style.json b/css/properties/column-rule-style.json index 69d523b333fe84..f5772fb8d3aa04 100644 --- a/css/properties/column-rule-style.json +++ b/css/properties/column-rule-style.json @@ -92,7 +92,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#crs" + } + ] } } } diff --git a/css/properties/column-rule-width.json b/css/properties/column-rule-width.json index 35e02a629bc947..5b25fdbbe11881 100644 --- a/css/properties/column-rule-width.json +++ b/css/properties/column-rule-width.json @@ -82,7 +82,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#crw" + } + ] } } } diff --git a/css/properties/column-rule.json b/css/properties/column-rule.json index 11ac68e0ce3658..503d8746630a36 100644 --- a/css/properties/column-rule.json +++ b/css/properties/column-rule.json @@ -82,7 +82,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#column-rule" + } + ] } } } diff --git a/css/properties/column-span.json b/css/properties/column-span.json index cb5cb4becc41d1..7d4e9e35175243 100644 --- a/css/properties/column-span.json +++ b/css/properties/column-span.json @@ -93,7 +93,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#column-span" + } + ] } } } diff --git a/css/properties/column-width.json b/css/properties/column-width.json index 22a989f35ba42e..c0b00bfdff0c70 100644 --- a/css/properties/column-width.json +++ b/css/properties/column-width.json @@ -92,7 +92,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Writing Modes", + "url": "https://drafts.csswg.org/css-writing-modes-4/#auto-multicol" + }, + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#cw" + } + ] }, "intrinsic_sizes": { "__compat": { diff --git a/css/properties/columns.json b/css/properties/columns.json index f84876b9eec414..e01e7a87d6d375 100644 --- a/css/properties/columns.json +++ b/css/properties/columns.json @@ -99,7 +99,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#columns" + } + ] }, "on_display_table_caption": { "__compat": { diff --git a/css/properties/content.json b/css/properties/content.json index 57639635f89413..81d13e4f5ff513 100644 --- a/css/properties/content.json +++ b/css/properties/content.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Content", + "url": "https://drafts.csswg.org/css-content-3/#content-property" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#content" + } + ] }, "element_replacement": { "__compat": { @@ -151,7 +161,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#urls" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#uri" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#url" + } + ] } } } diff --git a/css/properties/counter-increment.json b/css/properties/counter-increment.json index a3106e8639f9cc..3800e0a9159f8e 100644 --- a/css/properties/counter-increment.json +++ b/css/properties/counter-increment.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Lists", + "url": "https://drafts.csswg.org/css-lists-3/#propdef-counter-increment" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#propdef-counter-increment" + } + ] } } } diff --git a/css/properties/counter-reset.json b/css/properties/counter-reset.json index 4d149e8caba0e9..be2a28847eda70 100644 --- a/css/properties/counter-reset.json +++ b/css/properties/counter-reset.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Lists", + "url": "https://drafts.csswg.org/css-lists-3/#counter-reset" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#propdef-counter-reset" + } + ] } } } diff --git a/css/properties/cursor.json b/css/properties/cursor.json index ded4a102fbaa54..8386eaa9a31933 100644 --- a/css/properties/cursor.json +++ b/css/properties/cursor.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#cursor" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/ui.html#cursor-props" + } + ] }, "auto": { "__compat": { diff --git a/css/properties/custom-property.json b/css/properties/custom-property.json index 41ee764b32dd68..052fcd46beee60 100644 --- a/css/properties/custom-property.json +++ b/css/properties/custom-property.json @@ -50,7 +50,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Variables", + "url": "https://drafts.csswg.org/css-variables/#defining-variables" + } + ] }, "var": { "__compat": { @@ -140,7 +146,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Variables", + "url": "https://drafts.csswg.org/css-variables/#using-variables" + } + ] } }, "env": { @@ -179,7 +191,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Environment Variables", + "url": "https://drafts.csswg.org/css-env-1/#env-function" + } + ] } } } diff --git a/css/properties/direction.json b/css/properties/direction.json index 4b7debe8d02dd4..e5d2f8d64c98a8 100644 --- a/css/properties/direction.json +++ b/css/properties/direction.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Writing Modes", + "url": "https://drafts.csswg.org/css-writing-modes-3/#direction" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#direction" + } + ] } } } diff --git a/css/properties/display.json b/css/properties/display.json index efb52bc4c77864..b48a723f6f799c 100644 --- a/css/properties/display.json +++ b/css/properties/display.json @@ -49,7 +49,33 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Display", + "url": "https://drafts.csswg.org/css-display/#the-display-properties" + }, + { + "name": "CSS3 Ruby", + "url": "https://drafts.csswg.org/css-ruby/#ruby-display" + }, + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#grid-containers" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#flex-containers" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#display-prop" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#display" + } + ] }, "multi-keyword_values": { "__compat": { diff --git a/css/properties/empty-cells.json b/css/properties/empty-cells.json index d868f8ecffe6bd..106fc4b7dfbec0 100644 --- a/css/properties/empty-cells.json +++ b/css/properties/empty-cells.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/tables.html#empty-cells" + } + ] } } } diff --git a/css/properties/filter.json b/css/properties/filter.json index 69bafe1e5ace6d..83e2f9db290610 100644 --- a/css/properties/filter.json +++ b/css/properties/filter.json @@ -145,7 +145,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#FilterProperty" + } + ] }, "svg": { "__compat": { diff --git a/css/properties/flex-basis.json b/css/properties/flex-basis.json index 9be42c504bda0b..7866e595dada45 100644 --- a/css/properties/flex-basis.json +++ b/css/properties/flex-basis.json @@ -153,7 +153,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-basis" + } + ] }, "auto": { "__compat": { diff --git a/css/properties/flex-direction.json b/css/properties/flex-direction.json index 7c92438a8fa40a..e57ee8b0e3f779 100644 --- a/css/properties/flex-direction.json +++ b/css/properties/flex-direction.json @@ -126,7 +126,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#flex-direction" + } + ] } } } diff --git a/css/properties/flex-flow.json b/css/properties/flex-flow.json index 75d6520016709f..2ad5d5c9c113f5 100644 --- a/css/properties/flex-flow.json +++ b/css/properties/flex-flow.json @@ -122,7 +122,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#flex-flow-property" + } + ] } } } diff --git a/css/properties/flex-grow.json b/css/properties/flex-grow.json index 10d9cb0631ef7e..1eb5afb0ade6ba 100644 --- a/css/properties/flex-grow.json +++ b/css/properties/flex-grow.json @@ -123,7 +123,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#flex-grow-property" + } + ] }, "less_than_zero_animate": { "__compat": { diff --git a/css/properties/flex-shrink.json b/css/properties/flex-shrink.json index 9b6a08b456d39c..64388fd1f6cc46 100644 --- a/css/properties/flex-shrink.json +++ b/css/properties/flex-shrink.json @@ -154,7 +154,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#flex-shrink" + } + ] } } } diff --git a/css/properties/flex-wrap.json b/css/properties/flex-wrap.json index 03d2d92b05e92a..177563ceedd69d 100644 --- a/css/properties/flex-wrap.json +++ b/css/properties/flex-wrap.json @@ -66,7 +66,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#flex-wrap-property" + } + ] } } } diff --git a/css/properties/flex.json b/css/properties/flex.json index be6613a9bf8b51..f2c125e42f8f9b 100644 --- a/css/properties/flex.json +++ b/css/properties/flex.json @@ -141,7 +141,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#flex-property" + } + ] } } } diff --git a/css/properties/float.json b/css/properties/float.json index 19d1d877616fc1..2355f81d9ff7af 100644 --- a/css/properties/float.json +++ b/css/properties/float.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#float-clear" + }, + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#float" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#float-position" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#float" + } + ] }, "flow_relative_values": { "__compat": { diff --git a/css/properties/font-family.json b/css/properties/font-family.json index 3c9796a75398b1..123b63f534c467 100644 --- a/css/properties/font-family.json +++ b/css/properties/font-family.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Fonts", + "url": "https://drafts.csswg.org/css-fonts-4/#generic-font-families" + }, + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-family-prop" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/fonts.html#propdef-font-family" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#font-family" + } + ] }, "system_ui": { "__compat": { diff --git a/css/properties/font-feature-settings.json b/css/properties/font-feature-settings.json index 79a4f98d526480..a7025b44902b38 100644 --- a/css/properties/font-feature-settings.json +++ b/css/properties/font-feature-settings.json @@ -95,7 +95,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#propdef-font-feature-settings" + } + ] } } } diff --git a/css/properties/font-kerning.json b/css/properties/font-kerning.json index ff316e5595ab5b..3247eda1ca695a 100644 --- a/css/properties/font-kerning.json +++ b/css/properties/font-kerning.json @@ -76,7 +76,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#propdef-font-kerning" + } + ] } } } diff --git a/css/properties/font-language-override.json b/css/properties/font-language-override.json index 7bc0fa262fa223..2df9dbba42fce0 100644 --- a/css/properties/font-language-override.json +++ b/css/properties/font-language-override.json @@ -83,7 +83,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#propdef-font-language-override" + } + ] } } } diff --git a/css/properties/font-optical-sizing.json b/css/properties/font-optical-sizing.json index f560bd194b7cbc..c9d269e399f2a9 100644 --- a/css/properties/font-optical-sizing.json +++ b/css/properties/font-optical-sizing.json @@ -75,7 +75,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Fonts", + "url": "https://drafts.csswg.org/css-fonts-4/#font-optical-sizing-def" + } + ] } } } diff --git a/css/properties/font-size-adjust.json b/css/properties/font-size-adjust.json index b4cd827db130db..a3408e152e0c8b 100644 --- a/css/properties/font-size-adjust.json +++ b/css/properties/font-size-adjust.json @@ -71,7 +71,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#propdef-font-size-adjust" + } + ] } } } diff --git a/css/properties/font-size.json b/css/properties/font-size.json index 6d1ce84392df59..e228b12885b11f 100644 --- a/css/properties/font-size.json +++ b/css/properties/font-size.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-size-prop" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/fonts.html#propdef-font-size" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#font-size" + } + ] }, "rem_values": { "__compat": { diff --git a/css/properties/font-stretch.json b/css/properties/font-stretch.json index fbf89a5d0a4b45..fe88f648f7f982 100644 --- a/css/properties/font-stretch.json +++ b/css/properties/font-stretch.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Fonts", + "url": "https://drafts.csswg.org/css-fonts-4/#propdef-font-stretch" + }, + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#propdef-font-stretch" + } + ] }, "percentage": { "__compat": { diff --git a/css/properties/font-style.json b/css/properties/font-style.json index 8fa72800a3dac1..cd8e42bf45610f 100644 --- a/css/properties/font-style.json +++ b/css/properties/font-style.json @@ -51,7 +51,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Fonts", + "url": "https://drafts.csswg.org/css-fonts-4/#font-style-prop" + }, + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-style-prop" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/fonts.html#propdef-font-style" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#font-style" + } + ] }, "oblique-angle": { "__compat": { diff --git a/css/properties/font-synthesis.json b/css/properties/font-synthesis.json index 9c18367acc51dc..b4178abaa28815 100644 --- a/css/properties/font-synthesis.json +++ b/css/properties/font-synthesis.json @@ -62,7 +62,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#propdef-font-synthesis" + } + ] } } } diff --git a/css/properties/font-variant-east-asian.json b/css/properties/font-variant-east-asian.json index 1b72bf5710326f..c3854f54e30504 100644 --- a/css/properties/font-variant-east-asian.json +++ b/css/properties/font-variant-east-asian.json @@ -75,7 +75,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#propdef-font-variant-east-asian" + } + ] } } } diff --git a/css/properties/font-variant-ligatures.json b/css/properties/font-variant-ligatures.json index e2c0fae406a265..9404bac74d5dc3 100644 --- a/css/properties/font-variant-ligatures.json +++ b/css/properties/font-variant-ligatures.json @@ -105,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#propdef-font-variant-ligatures" + } + ] } } } diff --git a/css/properties/font-variant-numeric.json b/css/properties/font-variant-numeric.json index 88095d3eaec508..b3be6d9f85f79a 100644 --- a/css/properties/font-variant-numeric.json +++ b/css/properties/font-variant-numeric.json @@ -75,7 +75,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#propdef-font-variant-numeric" + } + ] } } } diff --git a/css/properties/font-variant-position.json b/css/properties/font-variant-position.json index cb0e894ea6aca6..cffaa706f7842a 100644 --- a/css/properties/font-variant-position.json +++ b/css/properties/font-variant-position.json @@ -75,7 +75,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#propdef-font-variant-position" + } + ] } } } diff --git a/css/properties/font-variation-settings.json b/css/properties/font-variation-settings.json index 5b73691f6668a2..636ace9c01c836 100644 --- a/css/properties/font-variation-settings.json +++ b/css/properties/font-variation-settings.json @@ -77,7 +77,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Fonts", + "url": "https://drafts.csswg.org/css-fonts-4/#low-level-font-variation-settings-control-the-font-variation-settings-property" + } + ] } } } diff --git a/css/properties/font-weight.json b/css/properties/font-weight.json index 9603bfcae39322..2b825f4c0deb64 100644 --- a/css/properties/font-weight.json +++ b/css/properties/font-weight.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Fonts", + "url": "https://drafts.csswg.org/css-fonts-4/#font-weight-prop" + }, + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-weight-prop" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/fonts.html#propdef-font-weight" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#font-weight" + } + ] }, "number": { "__compat": { diff --git a/css/properties/font.json b/css/properties/font.json index dbdfe67c5cf4d7..9bf6e661c1cc7e 100644 --- a/css/properties/font.json +++ b/css/properties/font.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fonts", + "url": "https://drafts.csswg.org/css-fonts-3/#font-prop" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/fonts.html#font-shorthand" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#font" + } + ] }, "system_fonts": { "__compat": { diff --git a/css/properties/gap.json b/css/properties/gap.json index f8a057f017eb77..75a0a2b0cdc3cb 100644 --- a/css/properties/gap.json +++ b/css/properties/gap.json @@ -60,7 +60,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-gap" + } + ] } }, "grid_context": { @@ -224,7 +230,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-gap" + } + ] }, "percentage_values": { "__compat": { @@ -405,7 +417,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-gap" + } + ] } } } diff --git a/css/properties/grid-area.json b/css/properties/grid-area.json index ccd02f385ecb4b..441a9da174c1eb 100644 --- a/css/properties/grid-area.json +++ b/css/properties/grid-area.json @@ -106,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-area" + } + ] } } } diff --git a/css/properties/grid-auto-columns.json b/css/properties/grid-auto-columns.json index f8edf6b970dc7f..4c5605128af2eb 100644 --- a/css/properties/grid-auto-columns.json +++ b/css/properties/grid-auto-columns.json @@ -119,7 +119,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-auto-columns" + } + ] } } } diff --git a/css/properties/grid-auto-flow.json b/css/properties/grid-auto-flow.json index 1cf2150fa5622e..35d62e13589500 100644 --- a/css/properties/grid-auto-flow.json +++ b/css/properties/grid-auto-flow.json @@ -106,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-auto-flow" + } + ] } } } diff --git a/css/properties/grid-auto-rows.json b/css/properties/grid-auto-rows.json index ee5eee828a2c61..7f751ddc2eeb46 100644 --- a/css/properties/grid-auto-rows.json +++ b/css/properties/grid-auto-rows.json @@ -119,7 +119,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-auto-rows" + } + ] } } } diff --git a/css/properties/grid-column-end.json b/css/properties/grid-column-end.json index 5b1a44db986fd9..aa394cfa0d35b2 100644 --- a/css/properties/grid-column-end.json +++ b/css/properties/grid-column-end.json @@ -117,7 +117,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-column-end" + } + ] } } } diff --git a/css/properties/grid-column-start.json b/css/properties/grid-column-start.json index 6e0bedbc0dfdb1..ee4959519b8fc6 100644 --- a/css/properties/grid-column-start.json +++ b/css/properties/grid-column-start.json @@ -117,7 +117,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-column-start" + } + ] } } } diff --git a/css/properties/grid-column.json b/css/properties/grid-column.json index 8264a4127ede7a..f63ce35d9efe63 100644 --- a/css/properties/grid-column.json +++ b/css/properties/grid-column.json @@ -117,7 +117,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-column" + } + ] } } } diff --git a/css/properties/grid-row-end.json b/css/properties/grid-row-end.json index f1fa9ffb3df976..25b378529905f8 100644 --- a/css/properties/grid-row-end.json +++ b/css/properties/grid-row-end.json @@ -106,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-row-end" + } + ] } } } diff --git a/css/properties/grid-row-start.json b/css/properties/grid-row-start.json index 858f9b59ad8ead..7d9b0b630635fe 100644 --- a/css/properties/grid-row-start.json +++ b/css/properties/grid-row-start.json @@ -106,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-row-start" + } + ] } } } diff --git a/css/properties/grid-row.json b/css/properties/grid-row.json index ef3f86b9df00ce..ebf6ad13af4b43 100644 --- a/css/properties/grid-row.json +++ b/css/properties/grid-row.json @@ -106,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-row" + } + ] } } } diff --git a/css/properties/grid-template-areas.json b/css/properties/grid-template-areas.json index fb0ba349d5a37d..f443eafa9a9714 100644 --- a/css/properties/grid-template-areas.json +++ b/css/properties/grid-template-areas.json @@ -106,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-template-areas" + } + ] } } } diff --git a/css/properties/grid-template-columns.json b/css/properties/grid-template-columns.json index 913541799a0af2..c3f643f2648ddd 100644 --- a/css/properties/grid-template-columns.json +++ b/css/properties/grid-template-columns.json @@ -106,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-template-columns" + } + ] }, "minmax": { "__compat": { @@ -203,7 +209,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#valdef-grid-template-columns-minmax" + } + ] } }, "repeat": { @@ -315,7 +327,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#funcdef-repeat" + } + ] } }, "fit-content": { @@ -367,7 +385,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Sizing", + "url": "https://drafts.csswg.org/css-sizing-3/#valdef-width-fit-content-length-percentage" + }, + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#valdef-grid-template-columns-fit-content" + } + ] } } } diff --git a/css/properties/grid-template-rows.json b/css/properties/grid-template-rows.json index 96079ca9d887ff..7379ce0ba513fd 100644 --- a/css/properties/grid-template-rows.json +++ b/css/properties/grid-template-rows.json @@ -106,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-template-rows" + } + ] }, "minmax": { "__compat": { @@ -203,7 +209,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#valdef-grid-template-columns-minmax" + } + ] } }, "repeat": { @@ -303,7 +315,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#funcdef-repeat" + } + ] } }, "fit-content": { @@ -355,7 +373,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Sizing", + "url": "https://drafts.csswg.org/css-sizing-3/#valdef-width-fit-content-length-percentage" + }, + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#valdef-grid-template-columns-fit-content" + } + ] } } } diff --git a/css/properties/grid-template.json b/css/properties/grid-template.json index f85f5ef26daf7d..a987255b788128 100644 --- a/css/properties/grid-template.json +++ b/css/properties/grid-template.json @@ -105,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid-template" + } + ] } } } diff --git a/css/properties/grid.json b/css/properties/grid.json index e73d3986ef271a..3156c7f706d4b1 100644 --- a/css/properties/grid.json +++ b/css/properties/grid.json @@ -112,7 +112,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#propdef-grid" + } + ] } } } diff --git a/css/properties/hanging-punctuation.json b/css/properties/hanging-punctuation.json index 5bbc5b4e349304..2026fc658cdc62 100644 --- a/css/properties/hanging-punctuation.json +++ b/css/properties/hanging-punctuation.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#hanging-punctuation-property" + } + ] } } } diff --git a/css/properties/height.json b/css/properties/height.json index bdb465907a36ce..1d93103e8e1331 100644 --- a/css/properties/height.json +++ b/css/properties/height.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#width-and-height" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visudet.html#the-height-property" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#height" + }, + { + "name": "CSS3 Sizing", + "url": "https://drafts.csswg.org/css-sizing-3/#width-height-keywords" + } + ] }, "stretch": { "__compat": { diff --git a/css/properties/hyphens.json b/css/properties/hyphens.json index 0040419774dded..d0c38f6db71df2 100644 --- a/css/properties/hyphens.json +++ b/css/properties/hyphens.json @@ -92,7 +92,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#hyphens-property" + } + ] }, "afrikaans": { "__compat": { diff --git a/css/properties/image-orientation.json b/css/properties/image-orientation.json index 2ff61d365a921d..b02d1086d1a59b 100644 --- a/css/properties/image-orientation.json +++ b/css/properties/image-orientation.json @@ -49,7 +49,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Images", + "url": "https://drafts.csswg.org/css-images-4/#image-orientation" + }, + { + "name": "CSS3 Images", + "url": "https://drafts.csswg.org/css-images-3/#the-image-orientation" + } + ] }, "flip_and_angle": { "__compat": { diff --git a/css/properties/image-rendering.json b/css/properties/image-rendering.json index c38366253cd84c..6d339f2bdefabf 100644 --- a/css/properties/image-rendering.json +++ b/css/properties/image-rendering.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Images", + "url": "https://drafts.csswg.org/css-images-3/#the-image-rendering" + } + ] }, "crisp-edges": { "__compat": { diff --git a/css/properties/initial-letter-align.json b/css/properties/initial-letter-align.json index f3bb44ba0a3408..af1b781bea05c3 100644 --- a/css/properties/initial-letter-align.json +++ b/css/properties/initial-letter-align.json @@ -46,7 +46,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Inline", + "url": "https://drafts.csswg.org/css-inline/#aligning-initial-letter" + } + ] } } } diff --git a/css/properties/initial-letter.json b/css/properties/initial-letter.json index 7b3c308299db3f..eaae0839f20b6c 100644 --- a/css/properties/initial-letter.json +++ b/css/properties/initial-letter.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Inline", + "url": "https://drafts.csswg.org/css-inline/#sizing-drop-initials" + } + ] } } } diff --git a/css/properties/inline-size.json b/css/properties/inline-size.json index 9726f26fd28f5b..078b08c3e4c773 100644 --- a/css/properties/inline-size.json +++ b/css/properties/inline-size.json @@ -75,7 +75,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#logical-dimension-properties" + } + ] } } } diff --git a/css/properties/inset-block-end.json b/css/properties/inset-block-end.json index 2fa94c3dc52bc3..58efd5a7866ce7 100644 --- a/css/properties/inset-block-end.json +++ b/css/properties/inset-block-end.json @@ -85,7 +85,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-inset-block-end" + } + ] } } } diff --git a/css/properties/inset-block-start.json b/css/properties/inset-block-start.json index d6ca3d4e218771..3d3592f806db7e 100644 --- a/css/properties/inset-block-start.json +++ b/css/properties/inset-block-start.json @@ -85,7 +85,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-inset-block-start" + } + ] } } } diff --git a/css/properties/inset-inline-end.json b/css/properties/inset-inline-end.json index 3fe6ba85bfab02..ef59743c719ca4 100644 --- a/css/properties/inset-inline-end.json +++ b/css/properties/inset-inline-end.json @@ -85,7 +85,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-inset-inline-end" + } + ] } } } diff --git a/css/properties/inset-inline-start.json b/css/properties/inset-inline-start.json index 9dd8726f446ff3..b644d0434f0ad4 100644 --- a/css/properties/inset-inline-start.json +++ b/css/properties/inset-inline-start.json @@ -85,7 +85,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-inset-inline-start" + } + ] } } } diff --git a/css/properties/isolation.json b/css/properties/isolation.json index 6e02bb6df4cbfe..59209b7ba07c74 100644 --- a/css/properties/isolation.json +++ b/css/properties/isolation.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Compositing", + "url": "https://drafts.fxtf.org/compositing-1/#isolation" + } + ] } } } diff --git a/css/properties/justify-content.json b/css/properties/justify-content.json index 4394742e42918f..5e6b1edb1cfec2 100644 --- a/css/properties/justify-content.json +++ b/css/properties/justify-content.json @@ -125,7 +125,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-justify-content" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#propdef-justify-content" + } + ] }, "space-evenly": { "__compat": { @@ -565,7 +575,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-justify-content" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#propdef-justify-content" + } + ] } } } diff --git a/css/properties/justify-items.json b/css/properties/justify-items.json index 16c638499b9c60..bf198da2bcde5d 100644 --- a/css/properties/justify-items.json +++ b/css/properties/justify-items.json @@ -51,7 +51,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-justify-items" + } + ] } }, "grid_context": { @@ -103,7 +109,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-justify-items" + } + ] } } } diff --git a/css/properties/justify-self.json b/css/properties/justify-self.json index 90cc9e4c86a15c..8ec0a6236f6970 100644 --- a/css/properties/justify-self.json +++ b/css/properties/justify-self.json @@ -51,7 +51,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-justify-self" + } + ] } }, "grid_context": { @@ -103,7 +109,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-justify-self" + } + ] } } } diff --git a/css/properties/left.json b/css/properties/left.json index 65db9f4d214478..f49cf91cd36fc9 100644 --- a/css/properties/left.json +++ b/css/properties/left.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS3 Positioning", + "url": "https://drafts.csswg.org/css-position-3/#propdef-left" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#propdef-left" + } + ] } } } diff --git a/css/properties/letter-spacing.json b/css/properties/letter-spacing.json index e463a364dfec43..5912300ab0cd39 100644 --- a/css/properties/letter-spacing.json +++ b/css/properties/letter-spacing.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#letter-spacing-property" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/text.html#propdef-letter-spacing" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/text.html#LetterSpacingProperty" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#letter-spacing" + } + ] }, "svg": { "__compat": { diff --git a/css/properties/line-break.json b/css/properties/line-break.json index 8311b7d33707f9..42f22ca7a6e180 100644 --- a/css/properties/line-break.json +++ b/css/properties/line-break.json @@ -91,7 +91,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#line-break-property" + } + ] } } } diff --git a/css/properties/line-height-step.json b/css/properties/line-height-step.json index a208cd81192cbe..dcfffd1139febc 100644 --- a/css/properties/line-height-step.json +++ b/css/properties/line-height-step.json @@ -76,7 +76,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Rhythmic Sizing", + "url": "https://drafts.csswg.org/css-rhythm/#line-height-step" + } + ] } } } diff --git a/css/properties/line-height.json b/css/properties/line-height.json index 2b44428a033b1b..f2dd31598f8c14 100644 --- a/css/properties/line-height.json +++ b/css/properties/line-height.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visudet.html#propdef-line-height" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#line-height" + } + ] }, "-moz-block-height": { "__compat": { diff --git a/css/properties/list-style-image.json b/css/properties/list-style-image.json index e0596e3e89cf34..416ea7e74cbb1b 100644 --- a/css/properties/list-style-image.json +++ b/css/properties/list-style-image.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Lists", + "url": "https://drafts.csswg.org/css-lists-3/#list-style-image" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#propdef-list-style-image" + } + ] } } } diff --git a/css/properties/list-style-position.json b/css/properties/list-style-position.json index c0a95da4c1d94a..c27dae7714c301 100644 --- a/css/properties/list-style-position.json +++ b/css/properties/list-style-position.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Lists", + "url": "https://drafts.csswg.org/css-lists-3/#list-style-position-property" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#propdef-list-style-position" + } + ] } } } diff --git a/css/properties/list-style-type.json b/css/properties/list-style-type.json index 0b3491fdeb29da..f25335f59717c4 100644 --- a/css/properties/list-style-type.json +++ b/css/properties/list-style-type.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#extending-css2" + }, + { + "name": "CSS3 Lists", + "url": "https://drafts.csswg.org/css-lists-3/#propdef-list-style-type" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#propdef-list-style-type" + } + ] }, "arabic-indic": { "__compat": { @@ -2530,7 +2544,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#symbols-function" + } + ] } } } diff --git a/css/properties/list-style.json b/css/properties/list-style.json index c3da5738ae1a8a..97c24694976a54 100644 --- a/css/properties/list-style.json +++ b/css/properties/list-style.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Lists", + "url": "https://drafts.csswg.org/css-lists-3/#list-style-property" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#propdef-list-style" + } + ] }, "symbols": { "__compat": { @@ -99,7 +109,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Counter Styles", + "url": "https://drafts.csswg.org/css-counter-styles-3/#symbols-function" + } + ] } } } diff --git a/css/properties/margin-block-end.json b/css/properties/margin-block-end.json index c8523360038e89..ec8ac76fb5b769 100644 --- a/css/properties/margin-block-end.json +++ b/css/properties/margin-block-end.json @@ -75,7 +75,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-margin-block-end" + } + ] } } } diff --git a/css/properties/margin-block-start.json b/css/properties/margin-block-start.json index b165d5d0eb5754..a447031515d990 100644 --- a/css/properties/margin-block-start.json +++ b/css/properties/margin-block-start.json @@ -75,7 +75,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-margin-block-start" + } + ] } } } diff --git a/css/properties/margin-bottom.json b/css/properties/margin-bottom.json index f5662d69b16fe4..67d8b70f1b0aa6 100644 --- a/css/properties/margin-bottom.json +++ b/css/properties/margin-bottom.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#margin-bottom" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#margin-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#margin-bottom" + } + ] }, "auto": { "__compat": { diff --git a/css/properties/margin-inline-end.json b/css/properties/margin-inline-end.json index d8807d478c0017..81382f0e209918 100644 --- a/css/properties/margin-inline-end.json +++ b/css/properties/margin-inline-end.json @@ -116,7 +116,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-margin-inline-end" + } + ] } } } diff --git a/css/properties/margin-inline-start.json b/css/properties/margin-inline-start.json index 3d9929033fdec2..7cfc854c45721e 100644 --- a/css/properties/margin-inline-start.json +++ b/css/properties/margin-inline-start.json @@ -116,7 +116,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-margin-inline-start" + } + ] } } } diff --git a/css/properties/margin-left.json b/css/properties/margin-left.json index 408aaac4a467f3..d2cb3d4ced8f9c 100644 --- a/css/properties/margin-left.json +++ b/css/properties/margin-left.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#the-margin" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#item-margins" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#margin-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#margin-left" + } + ] }, "auto": { "__compat": { diff --git a/css/properties/margin-right.json b/css/properties/margin-right.json index 483ee2baab4bfd..bf02a3add0bfd4 100644 --- a/css/properties/margin-right.json +++ b/css/properties/margin-right.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#the-margin" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#item-margins" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#margin-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#margin-right" + } + ] }, "auto": { "__compat": { diff --git a/css/properties/margin-top.json b/css/properties/margin-top.json index 95640fa935d1d8..bb1c7fd0bee47b 100644 --- a/css/properties/margin-top.json +++ b/css/properties/margin-top.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#the-margin" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#margin-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#margin-top" + } + ] }, "auto": { "__compat": { diff --git a/css/properties/margin.json b/css/properties/margin.json index e7174c62f2179f..40300676c7652b 100644 --- a/css/properties/margin.json +++ b/css/properties/margin.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#margin" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#margin-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#margin" + } + ] }, "auto": { "__compat": { diff --git a/css/properties/mask-clip.json b/css/properties/mask-clip.json index 2fc42ae2c324ae..db693c58b67b10 100644 --- a/css/properties/mask-clip.json +++ b/css/properties/mask-clip.json @@ -52,7 +52,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask-clip" + } + ] }, "border": { "__compat": { diff --git a/css/properties/mask-composite.json b/css/properties/mask-composite.json index 730b87ac8293c1..a7f5c7f9c2089f 100644 --- a/css/properties/mask-composite.json +++ b/css/properties/mask-composite.json @@ -52,7 +52,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask-composite" + } + ] } } } diff --git a/css/properties/mask-image.json b/css/properties/mask-image.json index 7b062c77b98037..25ffbfe2910b51 100644 --- a/css/properties/mask-image.json +++ b/css/properties/mask-image.json @@ -58,7 +58,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask-image" + } + ] }, "multiple_mask_images": { "__compat": { diff --git a/css/properties/mask-mode.json b/css/properties/mask-mode.json index b930360f707f15..5c14a7d1534fe8 100644 --- a/css/properties/mask-mode.json +++ b/css/properties/mask-mode.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask-mode" + } + ] } } } diff --git a/css/properties/mask-origin.json b/css/properties/mask-origin.json index 58d27519d89019..68c3f22ce5db28 100644 --- a/css/properties/mask-origin.json +++ b/css/properties/mask-origin.json @@ -55,7 +55,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask-origin" + } + ] }, "fill-box": { "__compat": { diff --git a/css/properties/mask-position.json b/css/properties/mask-position.json index 2956ac02c6b55d..ac2bf4b2111778 100644 --- a/css/properties/mask-position.json +++ b/css/properties/mask-position.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask-position" + } + ] } } } diff --git a/css/properties/mask-repeat.json b/css/properties/mask-repeat.json index 7293fa8af388a1..569c9e46e5bc51 100644 --- a/css/properties/mask-repeat.json +++ b/css/properties/mask-repeat.json @@ -53,7 +53,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask-repeat" + } + ] } } } diff --git a/css/properties/mask-size.json b/css/properties/mask-size.json index bdaec8f20e8215..2c1adc2fc6c823 100644 --- a/css/properties/mask-size.json +++ b/css/properties/mask-size.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask-size" + } + ] } } } diff --git a/css/properties/mask-type.json b/css/properties/mask-type.json index b298dabd89e3ed..04091991fb9827 100644 --- a/css/properties/mask-type.json +++ b/css/properties/mask-type.json @@ -75,7 +75,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask-type" + } + ] }, "applies_to_html": { "__compat": { diff --git a/css/properties/mask.json b/css/properties/mask.json index 56d8c3516fa584..f59f5b6ca1ac0d 100644 --- a/css/properties/mask.json +++ b/css/properties/mask.json @@ -84,7 +84,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/masking.html#MaskProperty" + } + ] }, "applies_to_html_elements": { "__compat": { diff --git a/css/properties/max-height.json b/css/properties/max-height.json index fbb5d258a822fc..2ed3fe5df15773 100644 --- a/css/properties/max-height.json +++ b/css/properties/max-height.json @@ -51,7 +51,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Sizing", + "url": "https://drafts.csswg.org/css-sizing-3/#width-height-keywords" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visudet.html#min-max-heights" + } + ] }, "sizing_values": { "__compat": { diff --git a/css/properties/max-inline-size.json b/css/properties/max-inline-size.json index febe755d7fa8de..bd170170cbf9c6 100644 --- a/css/properties/max-inline-size.json +++ b/css/properties/max-inline-size.json @@ -81,7 +81,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-max-inline-size" + } + ] } } } diff --git a/css/properties/max-width.json b/css/properties/max-width.json index f460e7fa5c5395..5e9891cd557351 100644 --- a/css/properties/max-width.json +++ b/css/properties/max-width.json @@ -51,7 +51,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Sizing", + "url": "https://drafts.csswg.org/css-sizing-3/#width-height-keywords" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visudet.html#min-max-widths" + } + ] }, "sizing_values": { "__compat": { diff --git a/css/properties/min-block-size.json b/css/properties/min-block-size.json index d079974d9e2cbd..7e7e46beae3c12 100644 --- a/css/properties/min-block-size.json +++ b/css/properties/min-block-size.json @@ -75,7 +75,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-min-block-size" + } + ] } } } diff --git a/css/properties/min-height.json b/css/properties/min-height.json index b00683a2594837..a97ae966590db6 100644 --- a/css/properties/min-height.json +++ b/css/properties/min-height.json @@ -52,7 +52,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Sizing", + "url": "https://drafts.csswg.org/css-sizing-3/#width-height-keywords" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#min-auto" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visudet.html#min-max-heights" + } + ] }, "sizing_values": { "__compat": { diff --git a/css/properties/min-inline-size.json b/css/properties/min-inline-size.json index e722006b88112f..5fabcde820b702 100644 --- a/css/properties/min-inline-size.json +++ b/css/properties/min-inline-size.json @@ -75,7 +75,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-min-inline-size" + } + ] } } } diff --git a/css/properties/min-width.json b/css/properties/min-width.json index 6dfd46351a7088..94e3eafda605fc 100644 --- a/css/properties/min-width.json +++ b/css/properties/min-width.json @@ -51,7 +51,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Sizing", + "url": "https://drafts.csswg.org/css-sizing-3/#width-height-keywords" + }, + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#min-size-auto" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visudet.html#min-max-widths" + } + ] }, "sizing_values": { "__compat": { diff --git a/css/properties/mix-blend-mode.json b/css/properties/mix-blend-mode.json index e11c7d2a397f73..d70523dd57c0f4 100644 --- a/css/properties/mix-blend-mode.json +++ b/css/properties/mix-blend-mode.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Compositing", + "url": "https://drafts.fxtf.org/compositing-1/#mix-blend-mode" + } + ] }, "svg": { "__compat": { diff --git a/css/properties/object-fit.json b/css/properties/object-fit.json index b7b4dcca7d46c7..4293f7dbb8c9ef 100644 --- a/css/properties/object-fit.json +++ b/css/properties/object-fit.json @@ -62,7 +62,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Images", + "url": "https://drafts.csswg.org/css-images-4/#the-object-fit" + }, + { + "name": "CSS3 Images", + "url": "https://drafts.csswg.org/css-images-3/#the-object-fit" + } + ] } } } diff --git a/css/properties/object-position.json b/css/properties/object-position.json index a50bcff7b72055..3d74742dc6a969 100644 --- a/css/properties/object-position.json +++ b/css/properties/object-position.json @@ -61,7 +61,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Images", + "url": "https://drafts.csswg.org/css-images-3/#the-object-position" + } + ] } } } diff --git a/css/properties/offset-distance.json b/css/properties/offset-distance.json index 84a07c5ca0f8f7..86833fe9f71197 100644 --- a/css/properties/offset-distance.json +++ b/css/properties/offset-distance.json @@ -67,7 +67,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Motion Path Level 1", + "url": "https://drafts.fxtf.org/motion-1/#offset-distance-property" + } + ] } } } diff --git a/css/properties/offset-path.json b/css/properties/offset-path.json index b687c08379866c..3448259ac9944d 100644 --- a/css/properties/offset-path.json +++ b/css/properties/offset-path.json @@ -100,7 +100,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Motion Path Level 1", + "url": "https://drafts.fxtf.org/motion-1/#offset-path-property" + } + ] } } } diff --git a/css/properties/offset-rotate.json b/css/properties/offset-rotate.json index f400f3c1521d66..1a85d94d102f16 100644 --- a/css/properties/offset-rotate.json +++ b/css/properties/offset-rotate.json @@ -79,7 +79,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Motion Path Level 1", + "url": "https://drafts.fxtf.org/motion-1/#offset-rotate-property" + } + ] } } } diff --git a/css/properties/offset.json b/css/properties/offset.json index 18f7236011009a..6a6634474025b8 100644 --- a/css/properties/offset.json +++ b/css/properties/offset.json @@ -67,7 +67,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Motion Path Level 1", + "url": "https://drafts.fxtf.org/motion-1/#offset-shorthand" + } + ] } } } diff --git a/css/properties/opacity.json b/css/properties/opacity.json index 6e7ea124bcc229..817386716201a0 100644 --- a/css/properties/opacity.json +++ b/css/properties/opacity.json @@ -56,7 +56,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS3 Colors", + "url": "https://drafts.csswg.org/css-color-3/#opacity" + } + ] } } } diff --git a/css/properties/order.json b/css/properties/order.json index 7be6acd91fd5d5..b4c7bbaf33ab54 100644 --- a/css/properties/order.json +++ b/css/properties/order.json @@ -155,7 +155,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#order-property" + } + ] }, "absolutely_positioned_flex_children": { "__compat": { diff --git a/css/properties/orphans.json b/css/properties/orphans.json index f2250ef947df27..235d082e765d7a 100644 --- a/css/properties/orphans.json +++ b/css/properties/orphans.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fragmentation", + "url": "https://drafts.csswg.org/css-break-3/#widows-orphans" + }, + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#filling-columns" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/page.html#break-inside" + } + ] } } } diff --git a/css/properties/outline-color.json b/css/properties/outline-color.json index 3bd51bf138f07b..b887f1f308731c 100644 --- a/css/properties/outline-color.json +++ b/css/properties/outline-color.json @@ -56,7 +56,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#outline-color" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/ui.html#propdef-outline-color" + } + ] }, "invert": { "__compat": { diff --git a/css/properties/outline-offset.json b/css/properties/outline-offset.json index 055199c1bffea3..869467374ce021 100644 --- a/css/properties/outline-offset.json +++ b/css/properties/outline-offset.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#outline-offset" + } + ] } } } diff --git a/css/properties/outline-style.json b/css/properties/outline-style.json index 56055adcfec02c..de97dd76fb44aa 100644 --- a/css/properties/outline-style.json +++ b/css/properties/outline-style.json @@ -56,7 +56,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#outline-style" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/ui.html#propdef-outline-style" + } + ] }, "auto": { "__compat": { diff --git a/css/properties/outline-width.json b/css/properties/outline-width.json index 6cafdd114b0b58..91aae70795d341 100644 --- a/css/properties/outline-width.json +++ b/css/properties/outline-width.json @@ -56,7 +56,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#outline-width" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/ui.html#propdef-outline-width" + } + ] } } } diff --git a/css/properties/outline.json b/css/properties/outline.json index 456db3bf0e99a8..09b95b40e7b39c 100644 --- a/css/properties/outline.json +++ b/css/properties/outline.json @@ -57,7 +57,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#outline" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/ui.html#propdef-outline" + } + ] } } } diff --git a/css/properties/overflow-wrap.json b/css/properties/overflow-wrap.json index c0eac46b204a61..206259f0451337 100644 --- a/css/properties/overflow-wrap.json +++ b/css/properties/overflow-wrap.json @@ -99,7 +99,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#propdef-overflow-wrap" + } + ] } } } diff --git a/css/properties/overflow-x.json b/css/properties/overflow-x.json index f40f3095ba15dd..793882298fcd4d 100644 --- a/css/properties/overflow-x.json +++ b/css/properties/overflow-x.json @@ -55,7 +55,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Overflow", + "url": "https://drafts.csswg.org/css-overflow-3/#propdef-overflow-x" + } + ] } } } diff --git a/css/properties/overflow-y.json b/css/properties/overflow-y.json index 2fe005c521cabb..c35a3cd0d3486c 100644 --- a/css/properties/overflow-y.json +++ b/css/properties/overflow-y.json @@ -55,7 +55,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Overflow", + "url": "https://drafts.csswg.org/css-overflow-3/#propdef-overflow-y" + } + ] } } } diff --git a/css/properties/overflow.json b/css/properties/overflow.json index f69e4758db6037..80df75481d0c9e 100644 --- a/css/properties/overflow.json +++ b/css/properties/overflow.json @@ -51,7 +51,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Overflow", + "url": "https://drafts.csswg.org/css-overflow-3/#propdef-overflow" + }, + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#propdef-overflow" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visufx.html#overflow" + } + ] }, "multiple_keywords": { "__compat": { diff --git a/css/properties/padding-block-end.json b/css/properties/padding-block-end.json index 6ebdf49b57aa06..09a06ce63d8e83 100644 --- a/css/properties/padding-block-end.json +++ b/css/properties/padding-block-end.json @@ -75,7 +75,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-padding-block-end" + } + ] } } } diff --git a/css/properties/padding-block-start.json b/css/properties/padding-block-start.json index 3d637aabe9daa5..2f83b7a4b76597 100644 --- a/css/properties/padding-block-start.json +++ b/css/properties/padding-block-start.json @@ -75,7 +75,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-padding-block-start" + } + ] } } } diff --git a/css/properties/padding-bottom.json b/css/properties/padding-bottom.json index 42b91d14cc07a4..ceebaf25f6f7dc 100644 --- a/css/properties/padding-bottom.json +++ b/css/properties/padding-bottom.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#the-padding" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#padding-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#padding-bottom" + } + ] } } } diff --git a/css/properties/padding-inline-end.json b/css/properties/padding-inline-end.json index 3d1b9b40e24c1d..5bdf517ccdb428 100644 --- a/css/properties/padding-inline-end.json +++ b/css/properties/padding-inline-end.json @@ -116,7 +116,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-padding-inline-end" + } + ] } } } diff --git a/css/properties/padding-inline-start.json b/css/properties/padding-inline-start.json index 933896b7d43eb0..73ec8f71004c90 100644 --- a/css/properties/padding-inline-start.json +++ b/css/properties/padding-inline-start.json @@ -116,7 +116,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#propdef-padding-inline-start" + } + ] } } } diff --git a/css/properties/padding-left.json b/css/properties/padding-left.json index decfb830a24eb7..85776f89f18e40 100644 --- a/css/properties/padding-left.json +++ b/css/properties/padding-left.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#the-padding" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#padding-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#padding-left" + } + ] } } } diff --git a/css/properties/padding-right.json b/css/properties/padding-right.json index 82369a65dd6143..a4e771c6c93303 100644 --- a/css/properties/padding-right.json +++ b/css/properties/padding-right.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#the-padding" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#padding-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#padding-right" + } + ] } } } diff --git a/css/properties/padding-top.json b/css/properties/padding-top.json index 3822803ae9da65..af629bbdce3b72 100644 --- a/css/properties/padding-top.json +++ b/css/properties/padding-top.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#the-padding" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#padding-properties" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#padding-top" + } + ] } } } diff --git a/css/properties/padding.json b/css/properties/padding.json index 02130767febb0b..40722d78c5915f 100644 --- a/css/properties/padding.json +++ b/css/properties/padding.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#the-padding" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/box.html#propdef-padding" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#padding" + } + ] } } } diff --git a/css/properties/page-break-after.json b/css/properties/page-break-after.json index 53dcd5cb75cb44..d3d4ddf08186b0 100644 --- a/css/properties/page-break-after.json +++ b/css/properties/page-break-after.json @@ -51,7 +51,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#logical-page" + }, + { + "name": "CSS3 Paged Media", + "url": "https://drafts.csswg.org/css-page-3/#page-break-after" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/page.html#propdef-page-break-after" + } + ] } } } diff --git a/css/properties/page-break-before.json b/css/properties/page-break-before.json index 0ce49080bedc3c..c05601b2361633 100644 --- a/css/properties/page-break-before.json +++ b/css/properties/page-break-before.json @@ -51,7 +51,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#logical-page" + }, + { + "name": "CSS3 Paged Media", + "url": "https://drafts.csswg.org/css-page-3/#page-break-before" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/page.html#propdef-page-break-before" + } + ] } } } diff --git a/css/properties/page-break-inside.json b/css/properties/page-break-inside.json index ebb85fd4635ce3..81d7f6db2afd13 100644 --- a/css/properties/page-break-inside.json +++ b/css/properties/page-break-inside.json @@ -51,7 +51,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Paged Media", + "url": "https://drafts.csswg.org/css-page-3/#page-break-inside" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/page.html#propdef-page-break-inside" + } + ] } } } diff --git a/css/properties/paint-order.json b/css/properties/paint-order.json index 845cb7e5a2a82d..be2ff86bf68de6 100644 --- a/css/properties/paint-order.json +++ b/css/properties/paint-order.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#PaintOrder" + } + ] } } } diff --git a/css/properties/perspective-origin.json b/css/properties/perspective-origin.json index db0737ddeb678f..672ddda6b678e6 100644 --- a/css/properties/perspective-origin.json +++ b/css/properties/perspective-origin.json @@ -109,7 +109,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Transforms 2", + "url": "https://drafts.csswg.org/css-transforms-2/#perspective-origin-property" + } + ] } } } diff --git a/css/properties/perspective.json b/css/properties/perspective.json index 5e4f302ce10e66..d3a97a063f0ffd 100644 --- a/css/properties/perspective.json +++ b/css/properties/perspective.json @@ -114,7 +114,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Transforms 2", + "url": "https://drafts.csswg.org/css-transforms-2/#propdef-perspective" + } + ] } } } diff --git a/css/properties/place-content.json b/css/properties/place-content.json index 4da19428dbdbd8..77d55be3bcdfc1 100644 --- a/css/properties/place-content.json +++ b/css/properties/place-content.json @@ -51,7 +51,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-place-content" + } + ] } }, "grid_context": { @@ -103,7 +109,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-place-content" + } + ] } }, "prevent-duplicated-values": { diff --git a/css/properties/place-items.json b/css/properties/place-items.json index e5bb3371bfbb4e..370c74755fe31a 100644 --- a/css/properties/place-items.json +++ b/css/properties/place-items.json @@ -51,7 +51,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#place-items-property" + } + ] } }, "grid_context": { @@ -103,7 +109,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#place-items-property" + } + ] } } } diff --git a/css/properties/place-self.json b/css/properties/place-self.json index 85889825a54ff4..5f4986cec47c88 100644 --- a/css/properties/place-self.json +++ b/css/properties/place-self.json @@ -51,7 +51,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#place-self-property" + } + ] } }, "grid_context": { @@ -103,7 +109,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#place-self-property" + } + ] } } } diff --git a/css/properties/pointer-events.json b/css/properties/pointer-events.json index 7c44849a715d72..5b41525675e711 100644 --- a/css/properties/pointer-events.json +++ b/css/properties/pointer-events.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/interact.html#PointerEventsProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/interact.html#PointerEventsProperty" + } + ] }, "html_elements": { "__compat": { diff --git a/css/properties/position.json b/css/properties/position.json index 6f919f079136c5..64055068d55b73 100644 --- a/css/properties/position.json +++ b/css/properties/position.json @@ -51,7 +51,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#propdef-position" + }, + { + "name": "CSS3 Positioning", + "url": "https://drafts.csswg.org/css-position-3/#position-property" + } + ] }, "fixed": { "__compat": { diff --git a/css/properties/quotes.json b/css/properties/quotes.json index cc1add3c3346af..2f144adef1c8f7 100644 --- a/css/properties/quotes.json +++ b/css/properties/quotes.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Content", + "url": "https://drafts.csswg.org/css-content-3/#quotes" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#quotes" + } + ] } } } diff --git a/css/properties/resize.json b/css/properties/resize.json index f6107c5eecebd8..bbd3f4093e1431 100644 --- a/css/properties/resize.json +++ b/css/properties/resize.json @@ -56,7 +56,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#resize" + }, + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#resize" + } + ] }, "block_level_support": { "__compat": { diff --git a/css/properties/right.json b/css/properties/right.json index 77205a15d2295d..ab0e51d125f903 100644 --- a/css/properties/right.json +++ b/css/properties/right.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS3 Positioning", + "url": "https://drafts.csswg.org/css-position-3/#propdef-right" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#propdef-right" + } + ] } } } diff --git a/css/properties/rotate.json b/css/properties/rotate.json index 5acfad16bf0294..49152ddb6bc44d 100644 --- a/css/properties/rotate.json +++ b/css/properties/rotate.json @@ -63,7 +63,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Transforms 2", + "url": "https://drafts.csswg.org/css-transforms-2/#individual-transforms" + } + ] }, "x_y_z_angle": { "__compat": { diff --git a/css/properties/row-gap.json b/css/properties/row-gap.json index 414b49beb2b228..98248a8dc9633f 100644 --- a/css/properties/row-gap.json +++ b/css/properties/row-gap.json @@ -60,7 +60,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-row-gap" + } + ] } }, "grid_context": { @@ -223,7 +229,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box Alignment", + "url": "https://drafts.csswg.org/css-align-3/#propdef-row-gap" + } + ] } } } diff --git a/css/properties/ruby-align.json b/css/properties/ruby-align.json index 5a484a91d9c92e..ac597405ddca9e 100644 --- a/css/properties/ruby-align.json +++ b/css/properties/ruby-align.json @@ -51,7 +51,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Ruby", + "url": "https://drafts.csswg.org/css-ruby/#ruby-align-property" + } + ] } } } diff --git a/css/properties/ruby-position.json b/css/properties/ruby-position.json index 2456ca46bda116..e622400c5b206f 100644 --- a/css/properties/ruby-position.json +++ b/css/properties/ruby-position.json @@ -52,7 +52,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Ruby", + "url": "https://drafts.csswg.org/css-ruby/#rubypos" + } + ] }, "inter-character": { "__compat": { diff --git a/css/properties/scale.json b/css/properties/scale.json index be094eab240d30..367447b7363d9f 100644 --- a/css/properties/scale.json +++ b/css/properties/scale.json @@ -63,7 +63,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Transforms 2", + "url": "https://drafts.csswg.org/css-transforms-2/#individual-transforms" + } + ] } } } diff --git a/css/properties/scroll-snap-type.json b/css/properties/scroll-snap-type.json index 4b1772f2731e5d..00b3cf24eafc7c 100644 --- a/css/properties/scroll-snap-type.json +++ b/css/properties/scroll-snap-type.json @@ -83,7 +83,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Scroll Snap", + "url": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-snap-type" + } + ] } } } diff --git a/css/properties/scrollbar-face-color.json b/css/properties/scrollbar-face-color.json index 306ab7c995297c..fd488cb3c00962 100644 --- a/css/properties/scrollbar-face-color.json +++ b/css/properties/scrollbar-face-color.json @@ -63,7 +63,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Scrollbars", + "url": "https://drafts.csswg.org/css-scrollbars-1/#scrollbar-face-color" + } + ] } } } diff --git a/css/properties/scrollbar-track-color.json b/css/properties/scrollbar-track-color.json index c83df594205ad3..fcdc9a528e7c1b 100644 --- a/css/properties/scrollbar-track-color.json +++ b/css/properties/scrollbar-track-color.json @@ -63,7 +63,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Scrollbars", + "url": "https://drafts.csswg.org/css-scrollbars-1/#scrollbar-track-color" + } + ] } } } diff --git a/css/properties/scrollbar-width.json b/css/properties/scrollbar-width.json index 6e89a9120b13d3..66d0ded98db1b6 100644 --- a/css/properties/scrollbar-width.json +++ b/css/properties/scrollbar-width.json @@ -63,7 +63,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Scrollbars", + "url": "https://drafts.csswg.org/css-scrollbars-1/#scrollbar-width" + } + ] } } } diff --git a/css/properties/shape-image-threshold.json b/css/properties/shape-image-threshold.json index 533ef3953d55cb..67e2b66c8e67ff 100644 --- a/css/properties/shape-image-threshold.json +++ b/css/properties/shape-image-threshold.json @@ -75,7 +75,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#shape-image-threshold-property" + } + ] } } } diff --git a/css/properties/shape-margin.json b/css/properties/shape-margin.json index 7ac3a53fd3a3d3..1c97ec8a4686ea 100644 --- a/css/properties/shape-margin.json +++ b/css/properties/shape-margin.json @@ -76,7 +76,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#shape-margin-property" + } + ] } } } diff --git a/css/properties/shape-outside.json b/css/properties/shape-outside.json index 89ca3881a200e6..2151c7945df32d 100644 --- a/css/properties/shape-outside.json +++ b/css/properties/shape-outside.json @@ -75,7 +75,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#shape-outside-property" + } + ] }, "image": { "__compat": { @@ -152,7 +158,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Images", + "url": "https://drafts.csswg.org/css-images-4/#typedef-image" + }, + { + "name": "CSS3 Images", + "url": "https://drafts.csswg.org/css-images-3/#typedef-image" + } + ] } }, "gradient": { @@ -230,7 +246,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Images", + "url": "https://drafts.csswg.org/css-images-3/#gradients" + } + ] } }, "inset": { @@ -308,7 +330,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#basic-shape-functions" + } + ] } }, "circle": { @@ -386,7 +414,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#basic-shape-functions" + } + ] } }, "polygon": { @@ -464,7 +498,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#basic-shape-functions" + } + ] } } } diff --git a/css/properties/tab-size.json b/css/properties/tab-size.json index 7bd5d17c5b12fa..95d77905bb71cc 100644 --- a/css/properties/tab-size.json +++ b/css/properties/tab-size.json @@ -72,7 +72,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#tab-size-property" + } + ] }, "length": { "__compat": { @@ -123,7 +129,25 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Values", + "url": "https://drafts.csswg.org/css-values-4/#lengths" + }, + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#lengths" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#length-units" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#length-units" + } + ] } } } diff --git a/css/properties/table-layout.json b/css/properties/table-layout.json index 5081e8ba96747c..41e0030c4bf264 100644 --- a/css/properties/table-layout.json +++ b/css/properties/table-layout.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/tables.html#width-layout" + } + ] } } } diff --git a/css/properties/text-align-last.json b/css/properties/text-align-last.json index 69f58dff80d2dc..2c726eb83e2fa4 100644 --- a/css/properties/text-align-last.json +++ b/css/properties/text-align-last.json @@ -109,7 +109,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#text-align-last-property" + } + ] } } } diff --git a/css/properties/text-align.json b/css/properties/text-align.json index a73d3c9acbc6fd..464cdbd321dbe5 100644 --- a/css/properties/text-align.json +++ b/css/properties/text-align.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Logical Properties", + "url": "https://drafts.csswg.org/css-logical-props/#text-align" + }, + { + "name": "CSS4 Text", + "url": "https://drafts.csswg.org/css-text-4/#alignment" + }, + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#text-align-property" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/text.html#alignment-prop" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#text-align" + } + ] }, "block_alignment_values": { "__compat": { diff --git a/css/properties/text-combine-upright.json b/css/properties/text-combine-upright.json index 7aecf05313c586..1fe61a73728d60 100644 --- a/css/properties/text-combine-upright.json +++ b/css/properties/text-combine-upright.json @@ -141,7 +141,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Writing Modes", + "url": "https://drafts.csswg.org/css-writing-modes-3/#propdef-text-combine-upright" + }, + { + "name": "CSS4 Writing Modes", + "url": "https://drafts.csswg.org/css-writing-modes-4/#propdef-text-combine-upright" + } + ] }, "digits": { "__compat": { diff --git a/css/properties/text-decoration-color.json b/css/properties/text-decoration-color.json index f93dc4b88dcfc0..22a8ecb2551e74 100644 --- a/css/properties/text-decoration-color.json +++ b/css/properties/text-decoration-color.json @@ -65,7 +65,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-decoration-color-property" + } + ] } } } diff --git a/css/properties/text-decoration-line.json b/css/properties/text-decoration-line.json index a0c3e557c431c2..b40fb6168d3727 100644 --- a/css/properties/text-decoration-line.json +++ b/css/properties/text-decoration-line.json @@ -65,7 +65,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-decoration-line" + } + ] }, "blink": { "__compat": { diff --git a/css/properties/text-decoration-skip-ink.json b/css/properties/text-decoration-skip-ink.json index 11b9dc8ab35ea4..40bca839dee027 100644 --- a/css/properties/text-decoration-skip-ink.json +++ b/css/properties/text-decoration-skip-ink.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-4/#text-decoration-skip-ink-property" + } + ] } } } diff --git a/css/properties/text-decoration-skip.json b/css/properties/text-decoration-skip.json index c1682472dd4618..4674639835eaaf 100644 --- a/css/properties/text-decoration-skip.json +++ b/css/properties/text-decoration-skip.json @@ -63,7 +63,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-4/#text-decoration-skip-property" + } + ] } } } diff --git a/css/properties/text-decoration-style.json b/css/properties/text-decoration-style.json index 4a9089a32fa212..48053155134f39 100644 --- a/css/properties/text-decoration-style.json +++ b/css/properties/text-decoration-style.json @@ -65,7 +65,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-decoration-style" + } + ] }, "wavy": { "__compat": { diff --git a/css/properties/text-decoration.json b/css/properties/text-decoration.json index 2240c845def5f8..4f5c20bb3cd23f 100644 --- a/css/properties/text-decoration.json +++ b/css/properties/text-decoration.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-decoration-property" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/text.html#lining-striking-props" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#text-decoration" + } + ] }, "blink": { "__compat": { diff --git a/css/properties/text-emphasis-color.json b/css/properties/text-emphasis-color.json index 07f1b23266774e..20125543c8101d 100644 --- a/css/properties/text-emphasis-color.json +++ b/css/properties/text-emphasis-color.json @@ -85,7 +85,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-emphasis-color-property" + } + ] } } } diff --git a/css/properties/text-emphasis-position.json b/css/properties/text-emphasis-position.json index 3703434030c0bd..b5ca7554a43c2d 100644 --- a/css/properties/text-emphasis-position.json +++ b/css/properties/text-emphasis-position.json @@ -105,7 +105,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property" + } + ] }, "left_and_right": { "__compat": { diff --git a/css/properties/text-emphasis-style.json b/css/properties/text-emphasis-style.json index 705d75a55d99be..d191efff96c697 100644 --- a/css/properties/text-emphasis-style.json +++ b/css/properties/text-emphasis-style.json @@ -85,7 +85,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-emphasis-style-property" + } + ] } } } diff --git a/css/properties/text-emphasis.json b/css/properties/text-emphasis.json index 2ac5a9056418ff..140c4fc2e01a6e 100644 --- a/css/properties/text-emphasis.json +++ b/css/properties/text-emphasis.json @@ -85,7 +85,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-emphasis-property" + } + ] } } } diff --git a/css/properties/text-indent.json b/css/properties/text-indent.json index cb8c529bf439bf..6bf0bdee918681 100644 --- a/css/properties/text-indent.json +++ b/css/properties/text-indent.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#text-indent-property" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/text.html#indentation-prop" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#text-indent" + } + ] }, "each-line": { "__compat": { diff --git a/css/properties/text-justify.json b/css/properties/text-justify.json index 46e116cf848abc..ab5027f87b6d80 100644 --- a/css/properties/text-justify.json +++ b/css/properties/text-justify.json @@ -84,7 +84,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#text-justify-property" + } + ] } } } diff --git a/css/properties/text-orientation.json b/css/properties/text-orientation.json index 2984a610f77105..25c5992ad9efba 100644 --- a/css/properties/text-orientation.json +++ b/css/properties/text-orientation.json @@ -100,7 +100,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Writing Modes", + "url": "https://drafts.csswg.org/css-writing-modes-3/#text-orientation" + } + ] }, "sideways": { "__compat": { diff --git a/css/properties/text-overflow.json b/css/properties/text-overflow.json index a52040104c52c7..53d80e9c02655c 100644 --- a/css/properties/text-overflow.json +++ b/css/properties/text-overflow.json @@ -63,7 +63,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Basic UI", + "url": "https://drafts.csswg.org/css-ui-4/#text-overflow" + }, + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#text-overflow" + } + ] }, "two_value_syntax": { "__compat": { diff --git a/css/properties/text-rendering.json b/css/properties/text-rendering.json index cb6de45831eca0..5a97dac95ff5ba 100644 --- a/css/properties/text-rendering.json +++ b/css/properties/text-rendering.json @@ -58,7 +58,17 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#TextRenderingProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#TextRenderingProperty" + } + ] }, "auto": { "__compat": { diff --git a/css/properties/text-shadow.json b/css/properties/text-shadow.json index 3f5a41a673c1a6..8b2c2395538f9e 100644 --- a/css/properties/text-shadow.json +++ b/css/properties/text-shadow.json @@ -63,7 +63,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-shadow" + } + ] } } } diff --git a/css/properties/text-size-adjust.json b/css/properties/text-size-adjust.json index f761d90e1ef5c3..969a2432be7205 100644 --- a/css/properties/text-size-adjust.json +++ b/css/properties/text-size-adjust.json @@ -90,7 +90,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Text Size Adjust", + "url": "https://drafts.csswg.org/css-size-adjust/#adjustment-control" + } + ] }, "percentages": { "__compat": { diff --git a/css/properties/text-transform.json b/css/properties/text-transform.json index 54bf0bfbddd82c..7af7545e7ccfbe 100644 --- a/css/properties/text-transform.json +++ b/css/properties/text-transform.json @@ -54,7 +54,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#text-transform" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/text.html#caps-prop" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#text-transform" + } + ] }, "capitalize": { "__compat": { diff --git a/css/properties/text-underline-position.json b/css/properties/text-underline-position.json index 7c894ba900f237..09525e4dd4e0c0 100644 --- a/css/properties/text-underline-position.json +++ b/css/properties/text-underline-position.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-underline-position-property" + } + ] }, "under": { "__compat": { diff --git a/css/properties/top.json b/css/properties/top.json index 2f56f0ba5ebbb0..a2a57e17add401 100644 --- a/css/properties/top.json +++ b/css/properties/top.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS3 Positioning", + "url": "https://drafts.csswg.org/css-position-3/#propdef-top" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#propdef-top" + } + ] } } } diff --git a/css/properties/touch-action.json b/css/properties/touch-action.json index 86662d2c21d265..62fffaa43502c0 100644 --- a/css/properties/touch-action.json +++ b/css/properties/touch-action.json @@ -84,7 +84,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Compat", + "url": "https://compat.spec.whatwg.org#touch-action" + }, + { + "name": "Pointer Events 2", + "url": "https://w3c.github.io/pointerevents/#the-touch-action-css-property" + }, + { + "name": "Pointer Events", + "url": "https://www.w3.org/TR/pointerevents/#the-touch-action-css-property" + } + ] }, "manipulation": { "__compat": { diff --git a/css/properties/transform-box.json b/css/properties/transform-box.json index 28ab823b7afbfd..d7125f6e5c22c8 100644 --- a/css/properties/transform-box.json +++ b/css/properties/transform-box.json @@ -95,7 +95,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transforms", + "url": "https://drafts.csswg.org/css-transforms/#transform-box" + } + ] } } } diff --git a/css/properties/transform-origin.json b/css/properties/transform-origin.json index 09394d797af354..316c8da81a05a6 100644 --- a/css/properties/transform-origin.json +++ b/css/properties/transform-origin.json @@ -117,7 +117,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transforms", + "url": "https://drafts.csswg.org/css-transforms/#transform-origin-property" + } + ] }, "three_value_syntax": { "__compat": { diff --git a/css/properties/transform-style.json b/css/properties/transform-style.json index 5af5b480f3d0f8..fbdf54092dfed1 100644 --- a/css/properties/transform-style.json +++ b/css/properties/transform-style.json @@ -109,7 +109,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Transforms 2", + "url": "https://drafts.csswg.org/css-transforms-2/#transform-style-property" + } + ] } } } diff --git a/css/properties/transform.json b/css/properties/transform.json index 5bab32b528b4b1..e1bce98b9f6889 100644 --- a/css/properties/transform.json +++ b/css/properties/transform.json @@ -130,7 +130,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Transforms 2", + "url": "https://drafts.csswg.org/css-transforms-2/#transform-functions" + }, + { + "name": "CSS3 Transforms", + "url": "https://drafts.csswg.org/css-transforms/#transform-property" + } + ] }, "3d": { "__compat": { diff --git a/css/properties/transition-delay.json b/css/properties/transition-delay.json index 318fef5520fd85..a8f1f9fe557a9e 100644 --- a/css/properties/transition-delay.json +++ b/css/properties/transition-delay.json @@ -161,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#transition-delay-property" + } + ] } } } diff --git a/css/properties/transition-duration.json b/css/properties/transition-duration.json index 9bf7653419b7c2..ccaa9c4cda3762 100644 --- a/css/properties/transition-duration.json +++ b/css/properties/transition-duration.json @@ -161,7 +161,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#transition-duration" + } + ] } } } diff --git a/css/properties/transition-property.json b/css/properties/transition-property.json index 50aaee0ffde59c..e097dac056dabd 100644 --- a/css/properties/transition-property.json +++ b/css/properties/transition-property.json @@ -150,7 +150,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#transition-property-property" + } + ] }, "IDENT_value": { "__compat": { diff --git a/css/properties/transition-timing-function.json b/css/properties/transition-timing-function.json index f99a6faab18929..505d3be423c784 100644 --- a/css/properties/transition-timing-function.json +++ b/css/properties/transition-timing-function.json @@ -150,7 +150,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#transition-timing-function-property" + } + ] } } } diff --git a/css/properties/transition.json b/css/properties/transition.json index 4409fda6c0e758..4f3bbc7c938fd0 100644 --- a/css/properties/transition.json +++ b/css/properties/transition.json @@ -171,7 +171,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#transition-shorthand-property" + } + ] }, "gradients": { "__compat": { diff --git a/css/properties/translate.json b/css/properties/translate.json index 0076777e608027..13d018ff918446 100644 --- a/css/properties/translate.json +++ b/css/properties/translate.json @@ -63,7 +63,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Transforms 2", + "url": "https://drafts.csswg.org/css-transforms-2/#individual-transforms" + } + ] } } } diff --git a/css/properties/unicode-bidi.json b/css/properties/unicode-bidi.json index 6581b6d4e59f41..469bc5bf0855a4 100644 --- a/css/properties/unicode-bidi.json +++ b/css/properties/unicode-bidi.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Writing Modes", + "url": "https://drafts.csswg.org/css-writing-modes-3/#unicode-bidi" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#propdef-unicode-bidi" + } + ] }, "isolate": { "__compat": { diff --git a/css/properties/user-select.json b/css/properties/user-select.json index 2172657f4f8b4d..e38177b0783f21 100644 --- a/css/properties/user-select.json +++ b/css/properties/user-select.json @@ -122,7 +122,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Basic UI", + "url": "https://drafts.csswg.org/css-ui-4/#propdef-user-select" + } + ] }, "auto": { "__compat": { diff --git a/css/properties/vertical-align.json b/css/properties/vertical-align.json index 8dcb72c31f49df..155e1cf6dffe69 100644 --- a/css/properties/vertical-align.json +++ b/css/properties/vertical-align.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visudet.html#propdef-vertical-align" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#vertical-align" + } + ] } } } diff --git a/css/properties/visibility.json b/css/properties/visibility.json index f57d75c65aac92..3e3ebeeec93ea0 100644 --- a/css/properties/visibility.json +++ b/css/properties/visibility.json @@ -53,7 +53,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Flexbox", + "url": "https://drafts.csswg.org/css-flexbox-1/#visibility-collapse" + }, + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#visibility-prop" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visufx.html#visibility" + } + ] }, "collapse": { "__compat": { diff --git a/css/properties/white-space.json b/css/properties/white-space.json index 665ef8a18c0e3a..1e83549f6e57ba 100644 --- a/css/properties/white-space.json +++ b/css/properties/white-space.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#propdef-white-space" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/text.html#white-space-prop" + } + ] }, "pre": { "__compat": { diff --git a/css/properties/widows.json b/css/properties/widows.json index c1a6869d6658ca..3058aaf34e6f81 100644 --- a/css/properties/widows.json +++ b/css/properties/widows.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Fragmentation", + "url": "https://drafts.csswg.org/css-break-3/#widows-orphans" + }, + { + "name": "CSS3 Multicol", + "url": "https://drafts.csswg.org/css-multicol-1/#filling-columns" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/page.html#break-inside" + } + ] } } } diff --git a/css/properties/width.json b/css/properties/width.json index d3f44c9888451b..d648484ca914d2 100644 --- a/css/properties/width.json +++ b/css/properties/width.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Box", + "url": "https://drafts.csswg.org/css-box-3/#the-width-and-height-properties" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visudet.html#the-width-property" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#width" + }, + { + "name": "CSS3 Sizing", + "url": "https://drafts.csswg.org/css-sizing-3/#width-height-keywords" + } + ] }, "animatable": { "__compat": { diff --git a/css/properties/will-change.json b/css/properties/will-change.json index 0b09d00d934f7d..bdb4f7558e7efc 100644 --- a/css/properties/will-change.json +++ b/css/properties/will-change.json @@ -77,7 +77,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Will Change", + "url": "https://drafts.csswg.org/css-will-change/#will-change" + } + ] } } } diff --git a/css/properties/word-break.json b/css/properties/word-break.json index 04c7d585e12fc9..799f7d54b04824 100644 --- a/css/properties/word-break.json +++ b/css/properties/word-break.json @@ -57,7 +57,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#word-break-property" + } + ] }, "keep-all": { "__compat": { diff --git a/css/properties/word-spacing.json b/css/properties/word-spacing.json index 0d6015b1304e49..50e3b0d2847e73 100644 --- a/css/properties/word-spacing.json +++ b/css/properties/word-spacing.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#propdef-word-spacing" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/text.html#propdef-word-spacing" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#word-spacing" + } + ] }, "percentages": { "__compat": { diff --git a/css/properties/word-wrap.json b/css/properties/word-wrap.json index 7e2011753dc096..ca457775dc4367 100644 --- a/css/properties/word-wrap.json +++ b/css/properties/word-wrap.json @@ -91,7 +91,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Text", + "url": "https://drafts.csswg.org/css-text-3/#propdef-overflow-wrap" + } + ] } } } diff --git a/css/properties/writing-mode.json b/css/properties/writing-mode.json index 49639b33efe6e9..dd9e522beeb33c 100644 --- a/css/properties/writing-mode.json +++ b/css/properties/writing-mode.json @@ -118,7 +118,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Writing Modes", + "url": "https://drafts.csswg.org/css-writing-modes-3/#block-flow" + }, + { + "name": "CSS4 Writing Modes", + "url": "https://drafts.csswg.org/css-writing-modes-4/#block-flow" + } + ] }, "svg_values": { "__compat": { diff --git a/css/properties/z-index.json b/css/properties/z-index.json index 021b8360bcd554..f1232781f29fb7 100644 --- a/css/properties/z-index.json +++ b/css/properties/z-index.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-css" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/visuren.html#z-index" + } + ] }, "negative_values": { "__compat": { diff --git a/css/selectors/active.json b/css/selectors/active.json index 260f537b5d22ba..fd26cef08e97a1 100644 --- a/css/selectors/active.json +++ b/css/selectors/active.json @@ -50,7 +50,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#selector-active" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#active-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#useraction-pseudos" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#dynamic-pseudo-classes" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#anchor-pseudo-classes" + } + ] }, "non_a_elements": { "__compat": { diff --git a/css/selectors/adjacent_sibling.json b/css/selectors/adjacent_sibling.json index f2afaef516c016..ac1c411f15a1a9 100644 --- a/css/selectors/adjacent_sibling.json +++ b/css/selectors/adjacent_sibling.json @@ -54,7 +54,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#adjacent-sibling-combinators" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#adjacent-sibling-combinators" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#adjacent-selectors" + } + ] } } } diff --git a/css/selectors/after.json b/css/selectors/after.json index 088ae04fab7276..e8d4c0d78321eb 100644 --- a/css/selectors/after.json +++ b/css/selectors/after.json @@ -102,7 +102,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Pseudo-Elements", + "url": "https://drafts.csswg.org/css-pseudo-4/#selectordef-after" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-properties" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#gen-content" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#before-after-content" + } + ] }, "animation_and_transition_support": { "__compat": { diff --git a/css/selectors/any-link.json b/css/selectors/any-link.json index 18208884dfc717..3c1f9ac5d431d1 100644 --- a/css/selectors/any-link.json +++ b/css/selectors/any-link.json @@ -70,7 +70,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#the-any-link-pseudo" + } + ] } } } diff --git a/css/selectors/attribute.json b/css/selectors/attribute.json index 4bb72c4644ecf1..01213669567025 100644 --- a/css/selectors/attribute.json +++ b/css/selectors/attribute.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#attribute-selectors" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#attribute-selectors" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#attribute-selectors" + } + ] }, "case_sensitive_modifier": { "__compat": { diff --git a/css/selectors/backdrop.json b/css/selectors/backdrop.json index 454aa86ced13ff..b8fdd3573f0462 100644 --- a/css/selectors/backdrop.json +++ b/css/selectors/backdrop.json @@ -59,7 +59,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fullscreen", + "url": "https://fullscreen.spec.whatwg.org/#::backdrop-pseudo-element" + } + ] }, "dialog": { "__compat": { diff --git a/css/selectors/before.json b/css/selectors/before.json index 0877159a5bb695..e89bf1738eea7a 100644 --- a/css/selectors/before.json +++ b/css/selectors/before.json @@ -114,7 +114,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Pseudo-Elements", + "url": "https://drafts.csswg.org/css-pseudo-4/#selectordef-before" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#animatable-properties" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#gen-content" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#before-after-content" + } + ] }, "animation_and_transition_support": { "__compat": { diff --git a/css/selectors/blank.json b/css/selectors/blank.json index f6e51f6c1dba5f..b6bc0882cc0b5e 100644 --- a/css/selectors/blank.json +++ b/css/selectors/blank.json @@ -54,7 +54,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#blank-pseudo" + } + ] } } } diff --git a/css/selectors/checked.json b/css/selectors/checked.json index 3cfe7b0196556b..a3b358fa6a2084 100644 --- a/css/selectors/checked.json +++ b/css/selectors/checked.json @@ -50,7 +50,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-checked" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-checked" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#checked" + }, + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#pseudo-checked" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#checked" + } + ] } } } diff --git a/css/selectors/child.json b/css/selectors/child.json index 76dffca39c4a0e..da2c5d72226421 100644 --- a/css/selectors/child.json +++ b/css/selectors/child.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#child-combinators" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#child-combinators" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#child-selectors" + } + ] } } } diff --git a/css/selectors/class.json b/css/selectors/class.json index 5f16b460c00d10..4f762d35831fe3 100644 --- a/css/selectors/class.json +++ b/css/selectors/class.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#class-html" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#class-html" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#class-html" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#class-as-selector" + } + ] } } } diff --git a/css/selectors/cue.json b/css/selectors/cue.json index c73353d4712e93..70cbe11e2ff70f 100644 --- a/css/selectors/cue.json +++ b/css/selectors/cue.json @@ -52,7 +52,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebVTT", + "url": "https://w3c.github.io/webvtt/#the-cue-pseudo-element" + } + ] } } } diff --git a/css/selectors/default.json b/css/selectors/default.json index 18185c93eaaa0d..52a9ce27a88f7a 100644 --- a/css/selectors/default.json +++ b/css/selectors/default.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-default" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-default" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#default-pseudo" + }, + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#pseudo-default" + } + ] } } } diff --git a/css/selectors/defined.json b/css/selectors/defined.json index be0a521e85e4de..79e805e78cf55c 100644 --- a/css/selectors/defined.json +++ b/css/selectors/defined.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics-other.html#selector-defined" + } + ] } } } diff --git a/css/selectors/descendant.json b/css/selectors/descendant.json index c5bd7cd5c6b303..86e5826fb5ae64 100644 --- a/css/selectors/descendant.json +++ b/css/selectors/descendant.json @@ -66,7 +66,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#descendant-combinators" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#descendant-selectors" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#contextual-selectors" + } + ] }, "two_greater_than_syntax": { "__compat": { diff --git a/css/selectors/dir.json b/css/selectors/dir.json index a6a227c2d03ef3..4aab47876be5ee 100644 --- a/css/selectors/dir.json +++ b/css/selectors/dir.json @@ -64,7 +64,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#selector-ltr" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#the-dir-pseudo" + } + ] } } } diff --git a/css/selectors/disabled.json b/css/selectors/disabled.json index ecfea837369c62..e01a8ca8d0a31e 100644 --- a/css/selectors/disabled.json +++ b/css/selectors/disabled.json @@ -51,7 +51,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-disabled" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-disabled" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#enableddisabled" + }, + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#pseudo-classes" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#enableddisabled" + } + ] } } } diff --git a/css/selectors/empty.json b/css/selectors/empty.json index eb750e68235def..b7e1ad4c6b46ec 100644 --- a/css/selectors/empty.json +++ b/css/selectors/empty.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#empty-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#empty-pseudo" + } + ] } } } diff --git a/css/selectors/enabled.json b/css/selectors/enabled.json index 6cde76ce9e9aae..9c137f84cf23bc 100644 --- a/css/selectors/enabled.json +++ b/css/selectors/enabled.json @@ -50,7 +50,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-enabled" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-enabled" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#enableddisabled" + }, + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#pseudo-classes" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#enableddisabled" + } + ] } } } diff --git a/css/selectors/first-child.json b/css/selectors/first-child.json index e7244f8bc3092c..08f11be2303fc2 100644 --- a/css/selectors/first-child.json +++ b/css/selectors/first-child.json @@ -54,7 +54,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#first-child-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#first-child-pseudo" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#first-child" + } + ] }, "no_parent_required": { "__compat": { diff --git a/css/selectors/first-letter.json b/css/selectors/first-letter.json index a525fca1155895..dab4805fc734c9 100644 --- a/css/selectors/first-letter.json +++ b/css/selectors/first-letter.json @@ -98,7 +98,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Pseudo-Elements", + "url": "https://drafts.csswg.org/css-pseudo-4/#first-letter-pseudo" + }, + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-shadow" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#first-letter" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#first-letter" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#the-first-letter-pseudo-element" + } + ] }, "dutch_ij_digraph": { "__compat": { diff --git a/css/selectors/first-line.json b/css/selectors/first-line.json index d0ea7dd96d7fe4..4b0ca1aabe7f62 100644 --- a/css/selectors/first-line.json +++ b/css/selectors/first-line.json @@ -104,7 +104,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Pseudo-Elements", + "url": "https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo" + }, + { + "name": "CSS3 Text Decoration", + "url": "https://drafts.csswg.org/css-text-decor-3/#text-shadow" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#first-line" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#first-line-pseudo" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#the-first-line-pseudo-element" + } + ] } } } diff --git a/css/selectors/first-of-type.json b/css/selectors/first-of-type.json index c40e6a9bca545f..9b7d4f6761e663 100644 --- a/css/selectors/first-of-type.json +++ b/css/selectors/first-of-type.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#first-of-type-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#first-of-type-pseudo" + } + ] } } } diff --git a/css/selectors/first.json b/css/selectors/first.json index cc114afe449b02..c87868ca30f9eb 100644 --- a/css/selectors/first.json +++ b/css/selectors/first.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Paged Media", + "url": "https://drafts.csswg.org/css-page-3/#left-right-first" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/page.html#page-selectors" + } + ] } } } diff --git a/css/selectors/focus-visible.json b/css/selectors/focus-visible.json index 44488bb70ddae1..eb88393ab1edb7 100644 --- a/css/selectors/focus-visible.json +++ b/css/selectors/focus-visible.json @@ -64,7 +64,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#the-focus-visible-pseudo" + } + ] } } } diff --git a/css/selectors/focus-within.json b/css/selectors/focus-within.json index 3f9f14338d6511..677c07829bfebc 100644 --- a/css/selectors/focus-within.json +++ b/css/selectors/focus-within.json @@ -52,7 +52,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#the-focus-within-pseudo" + } + ] } } } diff --git a/css/selectors/focus.json b/css/selectors/focus.json index 1d7a41c39f5827..61d49cc8af797d 100644 --- a/css/selectors/focus.json +++ b/css/selectors/focus.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#selector-focus" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#focus-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#the-user-action-pseudo-classes-hover-act" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#dynamic-pseudo-classes" + } + ] } } } diff --git a/css/selectors/fullscreen.json b/css/selectors/fullscreen.json index 942a0faef928f4..fccaf5aeecf5e1 100644 --- a/css/selectors/fullscreen.json +++ b/css/selectors/fullscreen.json @@ -85,7 +85,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fullscreen", + "url": "https://fullscreen.spec.whatwg.org/#:fullscreen-pseudo-class" + } + ] }, "all_elements": { "__compat": { diff --git a/css/selectors/general_sibling.json b/css/selectors/general_sibling.json index 3a4e47d6593ba2..54784a45562533 100644 --- a/css/selectors/general_sibling.json +++ b/css/selectors/general_sibling.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#general-sibling-combinators" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#general-sibling-combinators" + } + ] } } } diff --git a/css/selectors/grammar-error.json b/css/selectors/grammar-error.json index c4c4c68fae775c..286175977821a0 100644 --- a/css/selectors/grammar-error.json +++ b/css/selectors/grammar-error.json @@ -50,7 +50,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Pseudo-Elements", + "url": "https://drafts.csswg.org/css-pseudo-4/#selectordef-grammar-error" + } + ] } } } diff --git a/css/selectors/has.json b/css/selectors/has.json index 0fb27f7c376b50..8f8d861a9cee0d 100644 --- a/css/selectors/has.json +++ b/css/selectors/has.json @@ -61,7 +61,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#relational" + } + ] } } } diff --git a/css/selectors/host-context.json b/css/selectors/host-context.json index a2326851ce30ae..253304e94c82df 100644 --- a/css/selectors/host-context.json +++ b/css/selectors/host-context.json @@ -50,7 +50,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Scope", + "url": "http://drafts.csswg.org/css-scoping/#host-selector" + } + ] } } } diff --git a/css/selectors/host.json b/css/selectors/host.json index 8a75604f2504ec..50887f4e2d4d63 100644 --- a/css/selectors/host.json +++ b/css/selectors/host.json @@ -78,7 +78,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Scope", + "url": "http://drafts.csswg.org/css-scoping/#host-selector" + } + ] } } } diff --git a/css/selectors/hostfunction.json b/css/selectors/hostfunction.json index cd92e2e6adac98..812bd5743613d7 100644 --- a/css/selectors/hostfunction.json +++ b/css/selectors/hostfunction.json @@ -78,7 +78,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Scope", + "url": "http://drafts.csswg.org/css-scoping/#host-selector" + } + ] } } } diff --git a/css/selectors/hover.json b/css/selectors/hover.json index 1bd73df4f986e3..d48f31babea90e 100644 --- a/css/selectors/hover.json +++ b/css/selectors/hover.json @@ -51,7 +51,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#selector-hover" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#the-hover-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#the-user-action-pseudo-classes-hover-act" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#dynamic-pseudo-classes" + } + ] }, "a_elements": { "__compat": { diff --git a/css/selectors/id.json b/css/selectors/id.json index 0dc86799ad34d1..38b9513eec9c50 100644 --- a/css/selectors/id.json +++ b/css/selectors/id.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#id-selectors" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#id-selectors" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#id-selectors" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#id-as-selector" + } + ] } } } diff --git a/css/selectors/in-range.json b/css/selectors/in-range.json index 42ddd3e7426851..2940225ebfe1ec 100644 --- a/css/selectors/in-range.json +++ b/css/selectors/in-range.json @@ -57,7 +57,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#selector-in-range" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#in-range-pseudo" + } + ] } } } diff --git a/css/selectors/indeterminate.json b/css/selectors/indeterminate.json index 79f8cc4b2155af..8cdcf7c6b657ae 100644 --- a/css/selectors/indeterminate.json +++ b/css/selectors/indeterminate.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-indeterminate" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-indeterminate" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#indeterminate" + }, + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#indeterminate" + } + ] }, "checkbox": { "__compat": { diff --git a/css/selectors/invalid.json b/css/selectors/invalid.json index 457fd7c3319055..4f281ef0d445a7 100644 --- a/css/selectors/invalid.json +++ b/css/selectors/invalid.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-invalid" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-invalid" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#validity-pseudos" + } + ] }, "form": { "__compat": { diff --git a/css/selectors/lang.json b/css/selectors/lang.json index 47f47e0ccc3d3e..35aa54c084fd23 100644 --- a/css/selectors/lang.json +++ b/css/selectors/lang.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#lang-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#lang-pseudo" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#lang" + } + ] } } } diff --git a/css/selectors/last-child.json b/css/selectors/last-child.json index 6b7070664aa5f4..2156f12f1cb7a1 100644 --- a/css/selectors/last-child.json +++ b/css/selectors/last-child.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#last-child" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#last-child" + } + ] }, "no_parent_required": { "__compat": { diff --git a/css/selectors/last-of-type.json b/css/selectors/last-of-type.json index 59f28336e475b2..1df6a1f8f96d39 100644 --- a/css/selectors/last-of-type.json +++ b/css/selectors/last-of-type.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#last-of-type-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#last-of-type-pseudo" + } + ] } } } diff --git a/css/selectors/left.json b/css/selectors/left.json index db2621be3698e8..14886c2490e687 100644 --- a/css/selectors/left.json +++ b/css/selectors/left.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Paged Media", + "url": "https://drafts.csswg.org/css-page-3/#left-right-first" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/page.html#page-selectors" + } + ] } } } diff --git a/css/selectors/link.json b/css/selectors/link.json index 3fb1aaba630c72..7084353e18ab2a 100644 --- a/css/selectors/link.json +++ b/css/selectors/link.json @@ -50,7 +50,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#selector-link" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#link" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#link" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#link-pseudo-classes" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#anchor-pseudo-classes" + } + ] } } } diff --git a/css/selectors/marker.json b/css/selectors/marker.json index 9bd21899ae562e..e311051796e86d 100644 --- a/css/selectors/marker.json +++ b/css/selectors/marker.json @@ -50,7 +50,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Pseudo-Elements", + "url": "https://drafts.csswg.org/css-pseudo-4/#marker-pseudo" + }, + { + "name": "CSS3 Lists", + "url": "https://drafts.csswg.org/css-lists-3/#marker-pseudo" + } + ] } } } diff --git a/css/selectors/matches.json b/css/selectors/matches.json index b10ce97478f4f6..ac97990d40ff47 100644 --- a/css/selectors/matches.json +++ b/css/selectors/matches.json @@ -90,7 +90,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#matches" + } + ] } } } diff --git a/css/selectors/namespace.json b/css/selectors/namespace.json index 0a3409c7bc6754..f929e68c247e1c 100644 --- a/css/selectors/namespace.json +++ b/css/selectors/namespace.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Namespaces", + "url": "https://drafts.csswg.org/css-namespaces-3/#declaration" + } + ] } } } diff --git a/css/selectors/not.json b/css/selectors/not.json index fb17fa69f0e317..0779e2e23268d1 100644 --- a/css/selectors/not.json +++ b/css/selectors/not.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#negation" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#negation" + } + ] }, "selector_list": { "__compat": { diff --git a/css/selectors/nth-child.json b/css/selectors/nth-child.json index 8b9fb8bd289bee..991b0a449faee5 100644 --- a/css/selectors/nth-child.json +++ b/css/selectors/nth-child.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#nth-child-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#nth-child-pseudo" + } + ] }, "of_syntax": { "__compat": { diff --git a/css/selectors/nth-last-child.json b/css/selectors/nth-last-child.json index e2b4c575f8f848..71a790ca26d011 100644 --- a/css/selectors/nth-last-child.json +++ b/css/selectors/nth-last-child.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#nth-last-child-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#nth-last-child-pseudo" + } + ] }, "of_syntax": { "__compat": { diff --git a/css/selectors/nth-last-of-type.json b/css/selectors/nth-last-of-type.json index e38b90692aaacb..c4f16cd4c5829e 100644 --- a/css/selectors/nth-last-of-type.json +++ b/css/selectors/nth-last-of-type.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#nth-last-of-type-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#nth-last-of-type-pseudo" + } + ] } } } diff --git a/css/selectors/nth-of-type.json b/css/selectors/nth-of-type.json index 6fde9d72a5cf31..608b81c5116288 100644 --- a/css/selectors/nth-of-type.json +++ b/css/selectors/nth-of-type.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#nth-of-type-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#nth-of-type-pseudo" + } + ] } } } diff --git a/css/selectors/only-child.json b/css/selectors/only-child.json index ab25b50b60c614..4a3f959f5a9c96 100644 --- a/css/selectors/only-child.json +++ b/css/selectors/only-child.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#only-child-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#only-child-pseudo" + } + ] }, "no_parent_required": { "__compat": { diff --git a/css/selectors/only-of-type.json b/css/selectors/only-of-type.json index 1ecc64a961f341..c39f026ef5378d 100644 --- a/css/selectors/only-of-type.json +++ b/css/selectors/only-of-type.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#only-of-type-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#only-of-type-pseudo" + } + ] } } } diff --git a/css/selectors/optional.json b/css/selectors/optional.json index 672a93524e889c..c677575b6eb57c 100644 --- a/css/selectors/optional.json +++ b/css/selectors/optional.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-optional" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-optional" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#opt-pseudos" + }, + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#pseudo-required-value" + } + ] } } } diff --git a/css/selectors/out-of-range.json b/css/selectors/out-of-range.json index f35ec058e753aa..2649fc09d65c29 100644 --- a/css/selectors/out-of-range.json +++ b/css/selectors/out-of-range.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#selector-out-of-range" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#out-of-range-pseudo" + } + ] } } } diff --git a/css/selectors/placeholder-shown.json b/css/selectors/placeholder-shown.json index a47b9cbfa86c13..0dbfe9da22ff03 100644 --- a/css/selectors/placeholder-shown.json +++ b/css/selectors/placeholder-shown.json @@ -67,7 +67,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#placeholder" + } + ] }, "non_text_types": { "__compat": { diff --git a/css/selectors/placeholder.json b/css/selectors/placeholder.json index 1f11708f10f739..1ed88bcbe6f419 100644 --- a/css/selectors/placeholder.json +++ b/css/selectors/placeholder.json @@ -107,7 +107,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Pseudo-Elements", + "url": "https://drafts.csswg.org/css-pseudo-4/#placeholder-pseudo" + } + ] } } } diff --git a/css/selectors/read-only.json b/css/selectors/read-only.json index afc501b8e25aee..83e0c9426ece80 100644 --- a/css/selectors/read-only.json +++ b/css/selectors/read-only.json @@ -54,7 +54,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-read-only" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-read-only" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#rw-pseudos" + } + ] } } } diff --git a/css/selectors/read-write.json b/css/selectors/read-write.json index fcef5f41ed0255..9de8e05f11862b 100644 --- a/css/selectors/read-write.json +++ b/css/selectors/read-write.json @@ -54,7 +54,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-read-write" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-read-write" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#rw-pseudos" + } + ] }, "matches_editable_elements": { "__compat": { diff --git a/css/selectors/required.json b/css/selectors/required.json index 4a3ac43cfd8351..e7a1cb094d0765 100644 --- a/css/selectors/required.json +++ b/css/selectors/required.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-required" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-required" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#opt-pseudos" + }, + { + "name": "CSS3 Basic UI", + "url": "https://drafts.csswg.org/css-ui-3/#pseudo-required-value" + } + ] } } } diff --git a/css/selectors/right.json b/css/selectors/right.json index ab5524169c342a..3193a00cf4c4ff 100644 --- a/css/selectors/right.json +++ b/css/selectors/right.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Paged Media", + "url": "https://drafts.csswg.org/css-page-3/#left-right-first" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/page.html#page-selectors" + } + ] } } } diff --git a/css/selectors/root.json b/css/selectors/root.json index 5b65fa3a103a85..5928cabfe4b994 100644 --- a/css/selectors/root.json +++ b/css/selectors/root.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#root-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#root-pseudo" + } + ] } } } diff --git a/css/selectors/scope.json b/css/selectors/scope.json index ee4424bab75871..b076d41be61663 100644 --- a/css/selectors/scope.json +++ b/css/selectors/scope.json @@ -74,7 +74,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#the-scope-pseudo" + } + ] }, "dom_api": { "__compat": { diff --git a/css/selectors/selection.json b/css/selectors/selection.json index 6d895ac2bcd247..30b6cc26044f50 100644 --- a/css/selectors/selection.json +++ b/css/selectors/selection.json @@ -56,7 +56,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Pseudo-Elements", + "url": "https://drafts.csswg.org/css-pseudo-4/#selectordef-selection" + } + ] } } } diff --git a/css/selectors/slotted.json b/css/selectors/slotted.json index 8bf49c9d1f8164..bf63c73e8353cb 100644 --- a/css/selectors/slotted.json +++ b/css/selectors/slotted.json @@ -74,7 +74,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Scope", + "url": "http://drafts.csswg.org/css-scoping/#slotted-pseudo" + } + ] } } } diff --git a/css/selectors/spelling-error.json b/css/selectors/spelling-error.json index 56be264d21ac9b..bd27341f858f98 100644 --- a/css/selectors/spelling-error.json +++ b/css/selectors/spelling-error.json @@ -50,7 +50,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Pseudo-Elements", + "url": "https://drafts.csswg.org/css-pseudo-4/#selectordef-spelling-error" + } + ] } } } diff --git a/css/selectors/target.json b/css/selectors/target.json index f743c21ca44da2..e6b1dc1d6d341b 100644 --- a/css/selectors/target.json +++ b/css/selectors/target.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/browsers.html#selector-target" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#the-target-pseudo" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#target-pseudo" + } + ] } } } diff --git a/css/selectors/type.json b/css/selectors/type.json index ace33d223b3b6c..48d7ec8b8403cb 100644 --- a/css/selectors/type.json +++ b/css/selectors/type.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#type-selectors" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#type-selectors" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#type-selectors" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#basic-concepts" + } + ] }, "namespaces": { "__compat": { diff --git a/css/selectors/universal.json b/css/selectors/universal.json index 7c1ae73de3b5cb..ca21df5088ecc5 100644 --- a/css/selectors/universal.json +++ b/css/selectors/universal.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#the-universal-selector" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#universal-selector" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#universal-selector" + } + ] }, "namespaces": { "__compat": { diff --git a/css/selectors/valid.json b/css/selectors/valid.json index 171ea84bbb0980..f9d5f274f4cccd 100644 --- a/css/selectors/valid.json +++ b/css/selectors/valid.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#selector-valid" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/#selector-valid" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#validity-pseudos" + } + ] }, "form": { "__compat": { diff --git a/css/selectors/visited.json b/css/selectors/visited.json index aab01a5c2b59a5..6eb9ff3e276f3b 100644 --- a/css/selectors/visited.json +++ b/css/selectors/visited.json @@ -50,7 +50,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#selector-visited" + }, + { + "name": "CSS4 Selectors", + "url": "https://drafts.csswg.org/selectors-4/#link" + }, + { + "name": "CSS3 Selectors", + "url": "https://drafts.csswg.org/selectors-3/#link" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/selector.html#link-pseudo-classes" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#anchor-pseudo-classes" + } + ] }, "privacy_measures": { "__compat": { diff --git a/css/types/angle.json b/css/types/angle.json index 6c6184a03d34e6..82b2d3f02c26cc 100644 --- a/css/types/angle.json +++ b/css/types/angle.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#angles" + } + ] }, "deg": { "__compat": { @@ -100,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#angles" + } + ] } }, "grad": { @@ -151,7 +163,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#angles" + } + ] } }, "rad": { @@ -202,7 +220,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#angles" + } + ] } }, "turn": { @@ -253,7 +277,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#angles" + } + ] } } } diff --git a/css/types/attr.json b/css/types/attr.json index 475e286957ef0b..a28c298dbebfae 100644 --- a/css/types/attr.json +++ b/css/types/attr.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#attr-notation" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/generate.html#x18" + } + ] }, "fallback": { "__compat": { diff --git a/css/types/basic-shape.json b/css/types/basic-shape.json index f1ec6beedd98c6..6a8dd180cee796 100644 --- a/css/types/basic-shape.json +++ b/css/types/basic-shape.json @@ -64,7 +64,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#basic-shape-functions" + } + ] }, "inset": { "__compat": { @@ -129,7 +135,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#basic-shape-functions" + } + ] } }, "circle": { @@ -195,7 +207,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#basic-shape-functions" + } + ] } }, "polygon": { @@ -261,7 +279,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#basic-shape-functions" + } + ] } }, "path": { @@ -343,7 +367,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#basic-shape-functions" + } + ] } }, "animation": { @@ -409,7 +439,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Shapes", + "url": "https://drafts.csswg.org/css-shapes/#basic-shape-functions" + } + ] } } } diff --git a/css/types/blend-mode.json b/css/types/blend-mode.json index 30ce5f516754c6..1590165e4b816e 100644 --- a/css/types/blend-mode.json +++ b/css/types/blend-mode.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Compositing", + "url": "https://drafts.fxtf.org/compositing-1/#ltblendmodegt" + } + ] } } } diff --git a/css/types/calc.json b/css/types/calc.json index a54d3dad7af0fa..4adb308630903e 100644 --- a/css/types/calc.json +++ b/css/types/calc.json @@ -90,7 +90,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#calc-notation" + } + ] }, "gradient_color_stops": { "__compat": { diff --git a/css/types/flex.json b/css/types/flex.json index 468df67002887c..9a40c83626a4f0 100644 --- a/css/types/flex.json +++ b/css/types/flex.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Grid", + "url": "https://drafts.csswg.org/css-grid/#typedef-flex" + } + ] } } } diff --git a/css/types/frequency.json b/css/types/frequency.json index 15ec2a11142f54..4d81f8fea18281 100644 --- a/css/types/frequency.json +++ b/css/types/frequency.json @@ -50,7 +50,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#frequency" + } + ] } }, "hz": { diff --git a/css/types/global_keywords.json b/css/types/global_keywords.json index 611e7f3e42b17b..858a6635d585bc 100644 --- a/css/types/global_keywords.json +++ b/css/types/global_keywords.json @@ -100,7 +100,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Cascade", + "url": "https://drafts.csswg.org/css-cascade/#inherit" + }, + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#common-keywords" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/cascade.html#value-def-inherit" + } + ] } }, "initial": { @@ -166,7 +180,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Cascade", + "url": "https://drafts.csswg.org/css-cascade/#initial" + }, + { + "name": "CSS3 Cascade", + "url": "https://drafts.csswg.org/css-cascade-3/#initial" + } + ] } }, "revert": { @@ -225,7 +249,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Cascade", + "url": "https://drafts.csswg.org/css-cascade/#default" + } + ] } }, "unset": { @@ -277,7 +307,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Cascade", + "url": "https://drafts.csswg.org/css-cascade/#inherit-initial" + }, + { + "name": "CSS3 Cascade", + "url": "https://drafts.csswg.org/css-cascade-3/#inherit-initial" + } + ] } } } diff --git a/css/types/image.json b/css/types/image.json index b74daffb0e5356..c0e955583a9854 100644 --- a/css/types/image.json +++ b/css/types/image.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Images", + "url": "https://drafts.csswg.org/css-images-4/#typedef-image" + }, + { + "name": "CSS3 Images", + "url": "https://drafts.csswg.org/css-images-3/#typedef-image" + } + ] }, "gradient": { "__compat": { @@ -1344,7 +1354,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Images", + "url": "https://drafts.csswg.org/css-images-4/#element-notation" + } + ] } } } diff --git a/css/types/integer.json b/css/types/integer.json index 17b7ece45c9c27..9f2833a5db57ff 100644 --- a/css/types/integer.json +++ b/css/types/integer.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#integers" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#numbers" + } + ] } } } diff --git a/css/types/length.json b/css/types/length.json index 93635d24dc333f..0876e074a8b520 100644 --- a/css/types/length.json +++ b/css/types/length.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Values", + "url": "https://drafts.csswg.org/css-values-4/#lengths" + }, + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#lengths" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#length-units" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#length-units" + } + ] }, "cap": { "__compat": { diff --git a/css/types/number.json b/css/types/number.json index 68e7bfd7c97575..e738dcb91ce06d 100644 --- a/css/types/number.json +++ b/css/types/number.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#numbers" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#numbers" + } + ] }, "scientific_notation": { "__compat": { diff --git a/css/types/percentage.json b/css/types/percentage.json index c5dda87957041b..22966db68f4ffd 100644 --- a/css/types/percentage.json +++ b/css/types/percentage.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#percentages" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#percentage-units" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#percentage-units" + } + ] } } } diff --git a/css/types/position.json b/css/types/position.json index 22f941506fa4a5..dfc432890a6796 100644 --- a/css/types/position.json +++ b/css/types/position.json @@ -50,7 +50,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#position" + }, + { + "name": "CSS3 Backgrounds", + "url": "https://drafts.csswg.org/css-backgrounds-3/#position" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/colors.html#propdef-background-position" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#background-position" + } + ] }, "keyword_value_syntax": { "__compat": { diff --git a/css/types/ratio.json b/css/types/ratio.json index 6fc3a55b890627..e711ed8e75ff60 100644 --- a/css/types/ratio.json +++ b/css/types/ratio.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#values" + } + ] } } } diff --git a/css/types/resolution.json b/css/types/resolution.json index 53ef0f49ac31f4..694afdbbaa069b 100644 --- a/css/types/resolution.json +++ b/css/types/resolution.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS4 Values", + "url": "https://drafts.csswg.org/css-values-4/#resolution" + }, + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#resolution" + }, + { + "name": "CSS3 Media Queries", + "url": "https://drafts.csswg.org/mediaqueries-3/#resolution" + } + ] }, "dppx": { "__compat": { diff --git a/css/types/string.json b/css/types/string.json index e701c2f39daa83..05bec3f15894a8 100644 --- a/css/types/string.json +++ b/css/types/string.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#strings" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#strings" + } + ] }, "unicode_escaped_characters": { "__compat": { diff --git a/css/types/time.json b/css/types/time.json index 988d877f4c8758..398c5e330b13ea 100644 --- a/css/types/time.json +++ b/css/types/time.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#time" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/aural.html#times" + } + ] } } } diff --git a/css/types/timing-function.json b/css/types/timing-function.json index 58d3c70370248e..d01bddf7dc94de 100644 --- a/css/types/timing-function.json +++ b/css/types/timing-function.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Animations", + "url": "https://drafts.csswg.org/css-animations/#animation-timing-function" + }, + { + "name": "CSS3 Transitions", + "url": "https://drafts.csswg.org/css-transitions/#transition-timing-function" + } + ] }, "cubic-bezier": { "__compat": { diff --git a/css/types/transform-function.json b/css/types/transform-function.json index d94f72057f1063..211c5d2bd2eca6 100644 --- a/css/types/transform-function.json +++ b/css/types/transform-function.json @@ -55,7 +55,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Transforms", + "url": "https://drafts.csswg.org/css-transforms/#transform-property" + } + ] }, "3d": { "__compat": { diff --git a/css/types/url.json b/css/types/url.json index 14c918894d9c62..8b115a68aa0e8e 100644 --- a/css/types/url.json +++ b/css/types/url.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS3 Values", + "url": "https://drafts.csswg.org/css-values-3/#urls" + }, + { + "name": "CSS2.1", + "url": "https://www.w3.org/TR/CSS2/syndata.html#uri" + }, + { + "name": "CSS1", + "url": "https://www.w3.org/TR/CSS1/#url" + } + ] } } } diff --git a/html/elements/a.json b/html/elements/a.json index 509c0a657c26a7..dc099df2edc495 100644 --- a/html/elements/a.json +++ b/html/elements/a.json @@ -51,7 +51,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-a-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-a-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/links.html#h-12.2" + } + ] }, "charset": { "__compat": { diff --git a/html/elements/abbr.json b/html/elements/abbr.json index 060ce5a494cfef..59531f7f7073a5 100644 --- a/html/elements/abbr.json +++ b/html/elements/abbr.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-abbr-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-abbr-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#edef-ABBR" + } + ] } } } diff --git a/html/elements/address.json b/html/elements/address.json index fb364e4aac7457..e575cbb113cb06 100644 --- a/html/elements/address.json +++ b/html/elements/address.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-address-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-address-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.5.6" + } + ] } } } diff --git a/html/elements/area.json b/html/elements/area.json index d8936392ef51ae..8beba1a6f14b93 100644 --- a/html/elements/area.json +++ b/html/elements/area.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-area-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-area-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/objects.html#h-13.6.1" + } + ] }, "accesskey": { "__compat": { diff --git a/html/elements/article.json b/html/elements/article.json index 66015e9a6e04cc..b8fb89da56d2ff 100644 --- a/html/elements/article.json +++ b/html/elements/article.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-article-element" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sections.html#the-article-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-article-element" + } + ] } } } diff --git a/html/elements/aside.json b/html/elements/aside.json index 7721681c7e4918..70ad7df0ad0355 100644 --- a/html/elements/aside.json +++ b/html/elements/aside.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-aside-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-aside-element" + } + ] } } } diff --git a/html/elements/audio.json b/html/elements/audio.json index d4c94d8aa4020e..43c348fefceaea 100644 --- a/html/elements/audio.json +++ b/html/elements/audio.json @@ -51,7 +51,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-audio-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-audio-element" + } + ] }, "autoplay": { "__compat": { diff --git a/html/elements/b.json b/html/elements/b.json index db0c75af6505e7..8b025975c58f69 100644 --- a/html/elements/b.json +++ b/html/elements/b.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-b-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-b-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/present/graphics.html#h-15.2.1" + } + ] } } } diff --git a/html/elements/base.json b/html/elements/base.json index cfc527b12f41e8..d8e4ff580d2bfd 100644 --- a/html/elements/base.json +++ b/html/elements/base.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-base-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata#the-base-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/links.html#h-12.4" + } + ] }, "href": { "__compat": { diff --git a/html/elements/bdi.json b/html/elements/bdi.json index dbecae6847e820..e37a9d3a3476ce 100644 --- a/html/elements/bdi.json +++ b/html/elements/bdi.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-bdi-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-bdi-element" + } + ] } } } diff --git a/html/elements/bdo.json b/html/elements/bdo.json index 32de655d8a2b32..747f22ce8f45e1 100644 --- a/html/elements/bdo.json +++ b/html/elements/bdo.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-bdo-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-bdo-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/dirlang.html#h-8.2.4" + } + ] } } } diff --git a/html/elements/blockquote.json b/html/elements/blockquote.json index e75b13bc0925b4..c779a311701e51 100644 --- a/html/elements/blockquote.json +++ b/html/elements/blockquote.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-blockquote-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-blockquote-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.2.2" + } + ] }, "cite": { "__compat": { diff --git a/html/elements/body.json b/html/elements/body.json index d2dcd9b95bde1f..b10164b9b59734 100644 --- a/html/elements/body.json +++ b/html/elements/body.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-body-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-body-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.5.1" + } + ] }, "alink": { "__compat": { diff --git a/html/elements/br.json b/html/elements/br.json index 766bc6428e72f6..dfdbfd65c0c23f 100644 --- a/html/elements/br.json +++ b/html/elements/br.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-br-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-br-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.3.2.1" + } + ] }, "clear": { "__compat": { diff --git a/html/elements/button.json b/html/elements/button.json index 20b1aaa0a8d641..c9684d260e9f02 100644 --- a/html/elements/button.json +++ b/html/elements/button.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-button-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-button-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.5" + } + ] }, "autofocus": { "__compat": { diff --git a/html/elements/canvas.json b/html/elements/canvas.json index e81309f4eb5295..51c8cee9179dd5 100644 --- a/html/elements/canvas.json +++ b/html/elements/canvas.json @@ -60,7 +60,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#the-canvas-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#the-canvas-element" + } + ] }, "height": { "__compat": { diff --git a/html/elements/caption.json b/html/elements/caption.json index b582e2d1e1ee9a..3c5ee9a265e9d5 100644 --- a/html/elements/caption.json +++ b/html/elements/caption.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#the-caption-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-caption-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/tables.html#h-11.2.2" + } + ] }, "align": { "__compat": { diff --git a/html/elements/cite.json b/html/elements/cite.json index 75d5bd116528fb..5e96c4ee546cbc 100644 --- a/html/elements/cite.json +++ b/html/elements/cite.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-cite-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-cite-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.2.1" + } + ] } } } diff --git a/html/elements/code.json b/html/elements/code.json index 210166d90a1065..dd5f22c6a1e64b 100644 --- a/html/elements/code.json +++ b/html/elements/code.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-code-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-code-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.2.1" + } + ] } } } diff --git a/html/elements/col.json b/html/elements/col.json index 0b70f87e5d17fc..ed681fd575ec13 100644 --- a/html/elements/col.json +++ b/html/elements/col.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#the-col-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-col-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/tables.html#h-11.2.4.2" + } + ] }, "align": { "__compat": { diff --git a/html/elements/colgroup.json b/html/elements/colgroup.json index 8cfbf615b91100..a320e7f09a1c19 100644 --- a/html/elements/colgroup.json +++ b/html/elements/colgroup.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#the-colgroup-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-colgroup-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/tables.html#edef-COLGROUP" + } + ] }, "align": { "__compat": { diff --git a/html/elements/data.json b/html/elements/data.json index ff49513004a5c4..b1aacd2dfc646f 100644 --- a/html/elements/data.json +++ b/html/elements/data.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-data-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-data-element" + } + ] } } } diff --git a/html/elements/datalist.json b/html/elements/datalist.json index c5e7fbc5cc2954..2fb99f67f60483 100644 --- a/html/elements/datalist.json +++ b/html/elements/datalist.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-datalist-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-datalist-element" + } + ] } } } diff --git a/html/elements/dd.json b/html/elements/dd.json index 090a67da6299a0..c00a9c80218b88 100644 --- a/html/elements/dd.json +++ b/html/elements/dd.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-dd-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-dd-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/lists.html#h-10.3" + } + ] }, "nowrap": { "__compat": { diff --git a/html/elements/del.json b/html/elements/del.json index 55d8edc9b59436..a856661543e3c3 100644 --- a/html/elements/del.json +++ b/html/elements/del.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/edits.html#the-del-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/edits.html#the-del-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.4" + } + ] }, "cite": { "__compat": { diff --git a/html/elements/details.json b/html/elements/details.json index abb11560afa280..a10820c6748d3c 100644 --- a/html/elements/details.json +++ b/html/elements/details.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interactive-elements.html#the-details-element" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/interactive-elements.html#the-details-element" + } + ] }, "open": { "__compat": { diff --git a/html/elements/dfn.json b/html/elements/dfn.json index bddcdbef26e9e6..05bc11b7860ee3 100644 --- a/html/elements/dfn.json +++ b/html/elements/dfn.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-dfn-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-dfn-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.2.1" + } + ] } } } diff --git a/html/elements/dialog.json b/html/elements/dialog.json index 87c75a3aab0b5c..859b6f3bc55e17 100644 --- a/html/elements/dialog.json +++ b/html/elements/dialog.json @@ -65,7 +65,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-dialog-element" + }, + { + "name": "HTML5.2", + "url": "https://www.w3.org/TR/html52/interactive-elements.html#the-dialog-element" + } + ] }, "open": { "__compat": { diff --git a/html/elements/div.json b/html/elements/div.json index c77300e2e87f55..4257370ba3c432 100644 --- a/html/elements/div.json +++ b/html/elements/div.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/grouping-content.html#the-div-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-div-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.5.4" + } + ] }, "align": { "__compat": { diff --git a/html/elements/dl.json b/html/elements/dl.json index 053f23c7f9615b..1d2078750b240d 100644 --- a/html/elements/dl.json +++ b/html/elements/dl.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-dl-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-dl-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/lists.html#h-10.3" + } + ] } } } diff --git a/html/elements/dt.json b/html/elements/dt.json index a20b9a9a3aa3ab..e436cfc14267c9 100644 --- a/html/elements/dt.json +++ b/html/elements/dt.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-dt-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-dt-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/lists.html#h-10.3" + } + ] } } } diff --git a/html/elements/em.json b/html/elements/em.json index 9ae4d08bf072c6..e701f66f184734 100644 --- a/html/elements/em.json +++ b/html/elements/em.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-em-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-em-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.2.1" + } + ] } } } diff --git a/html/elements/embed.json b/html/elements/embed.json index 942d17f02446ec..90bbfc6fd02baa 100644 --- a/html/elements/embed.json +++ b/html/elements/embed.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-embed-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-embed-element" + } + ] }, "height": { "__compat": { diff --git a/html/elements/fieldset.json b/html/elements/fieldset.json index 116c0bdb92e935..9df4fe58f91bc2 100644 --- a/html/elements/fieldset.json +++ b/html/elements/fieldset.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-fieldset-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-fieldset-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.10" + } + ] }, "disabled": { "__compat": { diff --git a/html/elements/figcaption.json b/html/elements/figcaption.json index bd0284592e400c..372e0376141530 100644 --- a/html/elements/figcaption.json +++ b/html/elements/figcaption.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-figcaption-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-figcaption-element" + } + ] } } } diff --git a/html/elements/figure.json b/html/elements/figure.json index 2f90310ff9b069..aae854c0b39e11 100644 --- a/html/elements/figure.json +++ b/html/elements/figure.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-figure-element" + }, + { + "name": "HTML5.2", + "url": "https://www.w3.org/TR/html52/grouping-content.html#the-figure-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-figure-element" + } + ] } } } diff --git a/html/elements/footer.json b/html/elements/footer.json index 92e8f1c3eb3ed8..d261520ee079c4 100644 --- a/html/elements/footer.json +++ b/html/elements/footer.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics#the-footer-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-footer-element" + } + ] } } } diff --git a/html/elements/form.json b/html/elements/form.json index 03a2077b985608..0924da87ea8b52 100644 --- a/html/elements/form.json +++ b/html/elements/form.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-form-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-form-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.3" + } + ] }, "accept": { "__compat": { diff --git a/html/elements/h1.json b/html/elements/h1.json index 1b16ee7db04c6b..2cbbfe8ac49ace 100644 --- a/html/elements/h1.json +++ b/html/elements/h1.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.5.5" + } + ] } } } diff --git a/html/elements/h2.json b/html/elements/h2.json index 9e8417375b3e97..2c0c7f7571fccc 100644 --- a/html/elements/h2.json +++ b/html/elements/h2.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.5.5" + } + ] } } } diff --git a/html/elements/h3.json b/html/elements/h3.json index 38fa057fc35f16..3c447fdb4bc68f 100644 --- a/html/elements/h3.json +++ b/html/elements/h3.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.5.5" + } + ] } } } diff --git a/html/elements/h4.json b/html/elements/h4.json index df6af96baa66d6..e5e32000871639 100644 --- a/html/elements/h4.json +++ b/html/elements/h4.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.5.5" + } + ] } } } diff --git a/html/elements/h5.json b/html/elements/h5.json index 708285ed0312ad..972f988c13955f 100644 --- a/html/elements/h5.json +++ b/html/elements/h5.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.5.5" + } + ] } } } diff --git a/html/elements/h6.json b/html/elements/h6.json index ba68bf20232203..1b1df5ca992642 100644 --- a/html/elements/h6.json +++ b/html/elements/h6.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.5.5" + } + ] } } } diff --git a/html/elements/head.json b/html/elements/head.json index d6ddb29ea4c6ac..24f6ee864c2fb0 100644 --- a/html/elements/head.json +++ b/html/elements/head.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-head-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-head-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.4.1" + } + ] }, "profile": { "__compat": { diff --git a/html/elements/header.json b/html/elements/header.json index 1287b38a3b0a16..08ee89b466386a 100644 --- a/html/elements/header.json +++ b/html/elements/header.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-header-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-header-element" + } + ] } } } diff --git a/html/elements/hgroup.json b/html/elements/hgroup.json index 78e39b8674c812..9495b3175a99fc 100644 --- a/html/elements/hgroup.json +++ b/html/elements/hgroup.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-hgroup-element" + } + ] } } } diff --git a/html/elements/hr.json b/html/elements/hr.json index b0859e8c372691..bc3e0d6d0d86f4 100644 --- a/html/elements/hr.json +++ b/html/elements/hr.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-hr-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-hr-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/present/graphics.html#h-15.3" + } + ] }, "align": { "__compat": { diff --git a/html/elements/html.json b/html/elements/html.json index 9852c54da98bdf..d7980b584b1ae3 100644 --- a/html/elements/html.json +++ b/html/elements/html.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-html-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/semantics.html#the-html-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.3" + } + ] }, "manifest": { "__compat": { diff --git a/html/elements/i.json b/html/elements/i.json index 54d17b2ee62770..2522d388797e9b 100644 --- a/html/elements/i.json +++ b/html/elements/i.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-i-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-i-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/present/graphics.html#h-15.2.1" + } + ] } } } diff --git a/html/elements/iframe.json b/html/elements/iframe.json index 7c8682a6515620..b58111e7f5c19e 100644 --- a/html/elements/iframe.json +++ b/html/elements/iframe.json @@ -53,7 +53,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-iframe-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/present/frames.html#h-16.5" + }, + { + "name": "Presentation", + "url": "https://w3c.github.io/presentation-api/#sandboxing-and-the-allow-presentation-keyword" + } + ] }, "align": { "__compat": { diff --git a/html/elements/img.json b/html/elements/img.json index 193eb4c9926857..1b1cd0698a5241 100644 --- a/html/elements/img.json +++ b/html/elements/img.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-img-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/objects.html#h-13.2" + } + ] }, "align": { "__compat": { diff --git a/html/elements/input/button.json b/html/elements/input/button.json index 577bfa274f234f..490caaafde24af 100644 --- a/html/elements/input/button.json +++ b/html/elements/input/button.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#button-state-(type=button)" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#button-state-(type=button)" + } + ] } } } diff --git a/html/elements/input/checkbox.json b/html/elements/input/checkbox.json index 55703ad7579e54..34eb1792476021 100644 --- a/html/elements/input/checkbox.json +++ b/html/elements/input/checkbox.json @@ -48,10 +48,20 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#checkbox-state-(type=checkbox)" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#checkbox-state-(type=checkbox)" + } + ] } } } } } -} \ No newline at end of file +} diff --git a/html/elements/input/color.json b/html/elements/input/color.json index 1171a6f4762fb0..4f4703bae8dc80 100644 --- a/html/elements/input/color.json +++ b/html/elements/input/color.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#color-state-(type=color)" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-input-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.4" + } + ] }, "list": { "__compat": { diff --git a/html/elements/input/date.json b/html/elements/input/date.json index 36abb6a31cdcf2..294ba4f26271ff 100644 --- a/html/elements/input/date.json +++ b/html/elements/input/date.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#date-state-(type=date)" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#date-state-(type=date)" + } + ] } } } diff --git a/html/elements/input/datetime-local.json b/html/elements/input/datetime-local.json index dff099f599a5ae..c5f93ded40fd12 100644 --- a/html/elements/input/datetime-local.json +++ b/html/elements/input/datetime-local.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#local-date-and-time-state-(type=datetime-local)" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#local-date-and-time-state-(type=datetime-local)" + } + ] } } } diff --git a/html/elements/input/email.json b/html/elements/input/email.json index 100788d3e4f3e7..b9b1ce0185cc3a 100644 --- a/html/elements/input/email.json +++ b/html/elements/input/email.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#e-mail-state-(type=email)" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sec-forms.html#email-state-typeemail" + } + ] } } } diff --git a/html/elements/input/file.json b/html/elements/input/file.json index 3131cafe3c8885..02efc311f0d1ff 100644 --- a/html/elements/input/file.json +++ b/html/elements/input/file.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/input.html#file-upload-state-(type=file)" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sec-forms.html#file-upload-state-typefile" + } + ] } } } diff --git a/html/elements/input/hidden.json b/html/elements/input/hidden.json index 85378d5b181db3..e1e6436d0c61c6 100644 --- a/html/elements/input/hidden.json +++ b/html/elements/input/hidden.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#hidden-state-(type=hidden)" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/forms.html#hidden-state-(type=hidden)" + } + ] } } } diff --git a/html/elements/input/image.json b/html/elements/input/image.json index ae1ff39c60099e..7d3ebda5ecda0f 100644 --- a/html/elements/input/image.json +++ b/html/elements/input/image.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#image-button-state-(type=image)" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#image-button-state-%28type=image%29" + } + ] } } } diff --git a/html/elements/input/month.json b/html/elements/input/month.json index 88cb5dfa7da3a8..45494507e55b55 100644 --- a/html/elements/input/month.json +++ b/html/elements/input/month.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#month-state-(type=month)" + } + ] } } } diff --git a/html/elements/input/number.json b/html/elements/input/number.json index 58307aae875629..1674ead9153386 100644 --- a/html/elements/input/number.json +++ b/html/elements/input/number.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#number-state-(type=number)" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sec-forms.html#number-state-typenumber" + } + ] } } } diff --git a/html/elements/input/password.json b/html/elements/input/password.json index 80fc36214a0ae2..c7d6220774bc2b 100644 --- a/html/elements/input/password.json +++ b/html/elements/input/password.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#password-state-(type=password)" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/forms.html#password-state-(type=password)" + } + ] }, "insecure_login_handling": { "__compat": { diff --git a/html/elements/input/radio.json b/html/elements/input/radio.json index 6739a05acd3aaf..353b2eb1892793 100644 --- a/html/elements/input/radio.json +++ b/html/elements/input/radio.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#radio-button-state-(type=radio)" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#radio-button-state-(type=radio)" + } + ] } } } diff --git a/html/elements/input/range.json b/html/elements/input/range.json index eeb16ed5c21a90..a8b0f20a15e3cc 100644 --- a/html/elements/input/range.json +++ b/html/elements/input/range.json @@ -56,7 +56,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#range-state-(type=range)" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sec-forms.html#range-state-typerange" + } + ] }, "tick_marks": { "__compat": { diff --git a/html/elements/input/reset.json b/html/elements/input/reset.json index b8c34487c3b71f..bd2815e1d96cc8 100644 --- a/html/elements/input/reset.json +++ b/html/elements/input/reset.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#reset-button-state-(type=reset)" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#reset-button-state-(type=reset)" + } + ] } } } diff --git a/html/elements/input/search.json b/html/elements/input/search.json index a445734271218d..81b9e6a5cf61ed 100644 --- a/html/elements/input/search.json +++ b/html/elements/input/search.json @@ -48,10 +48,20 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/input.html#text-(type=text)-state-and-search-state-(type=search)" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sec-forms.html#text-typetext-state-and-search-state-typesearch" + } + ] } } } } } -} \ No newline at end of file +} diff --git a/html/elements/input/submit.json b/html/elements/input/submit.json index 41ccf8bc65cd4b..b7281e45edcbe0 100644 --- a/html/elements/input/submit.json +++ b/html/elements/input/submit.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#submit-button-state-(type=submit)" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#submit-button-state-(type=submit)" + } + ] } } } diff --git a/html/elements/input/tel.json b/html/elements/input/tel.json index e97f724304bafc..74951e18e6e2ce 100644 --- a/html/elements/input/tel.json +++ b/html/elements/input/tel.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#tel-state-(type=tel)" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sec-forms.html#tel-state-typetel" + } + ] } } } diff --git a/html/elements/input/text.json b/html/elements/input/text.json index 798c586adb4a0b..1fc36e1fed3bde 100644 --- a/html/elements/input/text.json +++ b/html/elements/input/text.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/input.html#text-(type=text)-state-and-search-state-(type=search)" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sec-forms.html#text-typetext-state-and-search-state-typesearch" + } + ] } } } diff --git a/html/elements/input/time.json b/html/elements/input/time.json index 3985a69a66e9bf..e2eeaddec6fbeb 100644 --- a/html/elements/input/time.json +++ b/html/elements/input/time.json @@ -48,7 +48,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#time-state-(type=time)" + } + ] } } } diff --git a/html/elements/input/url.json b/html/elements/input/url.json index 070a511104a4ff..069508cebf3712 100644 --- a/html/elements/input/url.json +++ b/html/elements/input/url.json @@ -48,7 +48,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#url-state-(type=url)" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sec-forms.html#url-state-typeurl" + } + ] } } } diff --git a/html/elements/input/week.json b/html/elements/input/week.json index a6bfe9a46ea96b..0bd86336a36e29 100644 --- a/html/elements/input/week.json +++ b/html/elements/input/week.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#week-state-(type=week)" + } + ] } } } diff --git a/html/elements/ins.json b/html/elements/ins.json index 7a6d2098f50270..aa6f72d2ca7055 100644 --- a/html/elements/ins.json +++ b/html/elements/ins.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/edits.html#the-ins-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/edits.html#the-ins-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.4" + } + ] }, "cite": { "__compat": { diff --git a/html/elements/kbd.json b/html/elements/kbd.json index f4b758cb3ac921..0e82d00e182b1b 100644 --- a/html/elements/kbd.json +++ b/html/elements/kbd.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-kbd-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-kbd-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.2.1" + } + ] } } } diff --git a/html/elements/label.json b/html/elements/label.json index 4e1283878572b8..5512bbbb20fac1 100644 --- a/html/elements/label.json +++ b/html/elements/label.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-label-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-label-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.9.1" + } + ] }, "for": { "__compat": { diff --git a/html/elements/legend.json b/html/elements/legend.json index 3a46284f22c6c8..b3756848af3a60 100644 --- a/html/elements/legend.json +++ b/html/elements/legend.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-legend-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-legend-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.10" + } + ] } } } diff --git a/html/elements/li.json b/html/elements/li.json index 9d4f2c434d0ed1..a9e56c54b01d20 100644 --- a/html/elements/li.json +++ b/html/elements/li.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-li-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-li-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/lists.html#h-10.2" + } + ] }, "value": { "__compat": { diff --git a/html/elements/link.json b/html/elements/link.json index a474986f31575e..ee7c9ebeb06c18 100644 --- a/html/elements/link.json +++ b/html/elements/link.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Subresource Integrity", + "url": "https://w3c.github.io/webappsec/specs/subresourceintegrity/#htmlscriptelement" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-link-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-link-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/links.html#h-12.3" + }, + { + "name": "Resource Hints", + "url": "https://www.w3.org/TR/resource-hints/#prefetch" + } + ] }, "charset": { "__compat": { diff --git a/html/elements/main.json b/html/elements/main.json index dbf5be7f660ae6..8e996e2a263161 100644 --- a/html/elements/main.json +++ b/html/elements/main.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/#the-main-element" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/grouping-content.html#the-main-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-main-element" + } + ] } } } diff --git a/html/elements/map.json b/html/elements/map.json index 1becd9c11c27ff..bce0783342dc6f 100644 --- a/html/elements/map.json +++ b/html/elements/map.json @@ -53,7 +53,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-map-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-map-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/objects.html#h-13.6.1" + } + ] }, "name": { "__compat": { diff --git a/html/elements/mark.json b/html/elements/mark.json index cf5bb624bb4266..529d1b3e3ef739 100644 --- a/html/elements/mark.json +++ b/html/elements/mark.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-mark-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-mark-element" + } + ] } } } diff --git a/html/elements/menu.json b/html/elements/menu.json index d9072c713498b0..81720032b3d398 100644 --- a/html/elements/menu.json +++ b/html/elements/menu.json @@ -57,7 +57,21 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/grouping-content.html#the-menu-element" + }, + { + "name": "HTML5.2", + "url": "https://www.w3.org/TR/html52/grouping-content.html#the-menu-element" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/interactive-elements.html#the-menu-element" + } + ] }, "button_menus": { "__compat": { diff --git a/html/elements/meta.json b/html/elements/meta.json index 7a938b5c5a0f98..be035a856f8d1e 100644 --- a/html/elements/meta.json +++ b/html/elements/meta.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-meta" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-meta-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-meta-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.4.4.2" + } + ] }, "charset": { "__compat": { diff --git a/html/elements/meter.json b/html/elements/meter.json index 2f760139d98121..fc8c5c95c9f7cf 100644 --- a/html/elements/meter.json +++ b/html/elements/meter.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-meter-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-meter-element" + } + ] }, "form": { "__compat": { diff --git a/html/elements/nav.json b/html/elements/nav.json index fea827ad9f974f..c3c7a7498a8c0d 100644 --- a/html/elements/nav.json +++ b/html/elements/nav.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/sections.html#the-nav-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-nav-element" + } + ] } } } diff --git a/html/elements/noscript.json b/html/elements/noscript.json index 997b7a2d36f80a..399e1c228a4d54 100644 --- a/html/elements/noscript.json +++ b/html/elements/noscript.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#the-noscript-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#the-noscript-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/scripts.html#h-18.3.1" + } + ] } } } diff --git a/html/elements/object.json b/html/elements/object.json index f46ece4a064eae..026547f28c31b2 100644 --- a/html/elements/object.json +++ b/html/elements/object.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-object-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-object-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/objects.html#h-13.3" + } + ] }, "archive": { "__compat": { diff --git a/html/elements/ol.json b/html/elements/ol.json index ed6f3464714665..0747806a969338 100644 --- a/html/elements/ol.json +++ b/html/elements/ol.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-ol-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-ol-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/lists.html#h-10.2" + } + ] }, "compact": { "__compat": { diff --git a/html/elements/optgroup.json b/html/elements/optgroup.json index fd35b708ec3358..21be6ff1dc1351 100644 --- a/html/elements/optgroup.json +++ b/html/elements/optgroup.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-optgroup-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-optgroup-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.6" + } + ] }, "disabled": { "__compat": { diff --git a/html/elements/option.json b/html/elements/option.json index 44863cacd06f5d..355aa904ec4eda 100644 --- a/html/elements/option.json +++ b/html/elements/option.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-option-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-option-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.6" + } + ] }, "disabled": { "__compat": { diff --git a/html/elements/output.json b/html/elements/output.json index 093679748a083f..74e19f44234173 100644 --- a/html/elements/output.json +++ b/html/elements/output.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-output-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-output-element" + } + ] }, "for": { "__compat": { diff --git a/html/elements/p.json b/html/elements/p.json index 75e91f2496871f..ee0eba7c3d66be 100644 --- a/html/elements/p.json +++ b/html/elements/p.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-p-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-p-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.3.1" + } + ] } } } diff --git a/html/elements/param.json b/html/elements/param.json index f0a36ff01da766..99dc2a8a9d3524 100644 --- a/html/elements/param.json +++ b/html/elements/param.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-param-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-param-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/objects.html#h-13.3.2" + } + ] }, "name": { "__compat": { diff --git a/html/elements/picture.json b/html/elements/picture.json index bdaf1848f9cd29..67d37af097dea7 100644 --- a/html/elements/picture.json +++ b/html/elements/picture.json @@ -75,7 +75,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element" + } + ] } } } diff --git a/html/elements/pre.json b/html/elements/pre.json index 2ec88d2e61d458..92e762475b3c7a 100644 --- a/html/elements/pre.json +++ b/html/elements/pre.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-pre-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-pre-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.3.4" + } + ] }, "cols": { "__compat": { diff --git a/html/elements/progress.json b/html/elements/progress.json index 5a293421470d79..5b2840159e284c 100644 --- a/html/elements/progress.json +++ b/html/elements/progress.json @@ -58,7 +58,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-progress-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-progress-element" + } + ] }, "max": { "__compat": { diff --git a/html/elements/q.json b/html/elements/q.json index a2298199f35330..58993ac24b4eb2 100644 --- a/html/elements/q.json +++ b/html/elements/q.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-q-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-q-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.2.2" + } + ] } } } diff --git a/html/elements/rb.json b/html/elements/rb.json index 1a9652617a0949..5040fa274e25b8 100644 --- a/html/elements/rb.json +++ b/html/elements/rb.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-rb-element" + } + ] } } } diff --git a/html/elements/rp.json b/html/elements/rp.json index 40fd00fce6efdf..81e99413e7f4c8 100644 --- a/html/elements/rp.json +++ b/html/elements/rp.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-rp-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-rp-element" + } + ] } } } diff --git a/html/elements/rt.json b/html/elements/rt.json index b585d900f246c2..55e0ee6436745b 100644 --- a/html/elements/rt.json +++ b/html/elements/rt.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-rt-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-rt-element" + } + ] } } } diff --git a/html/elements/rtc.json b/html/elements/rtc.json index 7d22c69bde6c01..99a74f552cb6b6 100644 --- a/html/elements/rtc.json +++ b/html/elements/rtc.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML5.2", + "url": "https://www.w3.org/TR/html52/textlevel-semantics.html#the-rtc-element" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/textlevel-semantics.html#the-rtc-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-rtc-element" + } + ] } } } diff --git a/html/elements/ruby.json b/html/elements/ruby.json index 093e76260474d2..ab7581b3e69a1b 100644 --- a/html/elements/ruby.json +++ b/html/elements/ruby.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-ruby-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-ruby-element" + } + ] } } } diff --git a/html/elements/s.json b/html/elements/s.json index c8d81e12d4d84e..520e30e6ce7fdf 100644 --- a/html/elements/s.json +++ b/html/elements/s.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-s-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-s-element" + } + ] } } } diff --git a/html/elements/samp.json b/html/elements/samp.json index 3bb367e759c287..9d96fddd423244 100644 --- a/html/elements/samp.json +++ b/html/elements/samp.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-samp-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-samp-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#h-9.2.1" + } + ] } } } diff --git a/html/elements/script.json b/html/elements/script.json index 32f887bfcc73f8..088b8837da58d3 100644 --- a/html/elements/script.json +++ b/html/elements/script.json @@ -50,7 +50,33 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#the-script-element" + }, + { + "name": "HTML5.2", + "url": "https://www.w3.org/TR/html52/semantics-scripting.html#the-script-element" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/semantics-scripting.html#the-script-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/scripting-1.html#script" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/scripts.html#h-18.2.1" + }, + { + "name": "Subresource Integrity", + "url": "https://w3c.github.io/webappsec/specs/subresourceintegrity/#htmlscriptelement" + } + ] }, "async": { "__compat": { diff --git a/html/elements/section.json b/html/elements/section.json index f5cbceca69c554..e57a2e34c96494 100644 --- a/html/elements/section.json +++ b/html/elements/section.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/sections.html#the-section-element" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/sections.html#the-section-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/sections.html#the-section-element" + } + ] } } } diff --git a/html/elements/select.json b/html/elements/select.json index de5a6ad530e597..2f5d8d70855301 100644 --- a/html/elements/select.json +++ b/html/elements/select.json @@ -59,7 +59,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-select-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-select-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.6" + } + ] }, "autofocus": { "__compat": { diff --git a/html/elements/slot.json b/html/elements/slot.json index 5df963f635ae54..cfa0fd9bf5e6b5 100644 --- a/html/elements/slot.json +++ b/html/elements/slot.json @@ -105,7 +105,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#the-slot-element" + }, + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#shadow-tree-slots" + } + ] }, "name": { "__compat": { diff --git a/html/elements/small.json b/html/elements/small.json index ffb81b99f639df..c89ea618ce8cec 100644 --- a/html/elements/small.json +++ b/html/elements/small.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-small-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-small-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/present/graphics.html#edef-SMALL" + } + ] } } } diff --git a/html/elements/source.json b/html/elements/source.json index 815f60e7410430..8d621117b23b34 100644 --- a/html/elements/source.json +++ b/html/elements/source.json @@ -51,7 +51,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-source-element" + } + ] }, "media": { "__compat": { diff --git a/html/elements/span.json b/html/elements/span.json index 6ec08492000467..5e8a7bca19aa79 100644 --- a/html/elements/span.json +++ b/html/elements/span.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-span-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-span-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#edef-SPAN" + } + ] } } } diff --git a/html/elements/strong.json b/html/elements/strong.json index c11a1a79257b77..c77cbac59831ea 100644 --- a/html/elements/strong.json +++ b/html/elements/strong.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-strong-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-strong-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/text.html#edef-STRONG" + } + ] } } } diff --git a/html/elements/style.json b/html/elements/style.json index 3d201bc629b702..415cae41031177 100644 --- a/html/elements/style.json +++ b/html/elements/style.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-style-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-style-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/present/styles.html#h-14.2.3" + } + ] }, "type": { "__compat": { diff --git a/html/elements/sub.json b/html/elements/sub.json index ff326c11a2cdf3..d18012a9d4ee1e 100644 --- a/html/elements/sub.json +++ b/html/elements/sub.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-sub-and-sup-elements" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-sub-and-sup-elements" + } + ] } } } diff --git a/html/elements/summary.json b/html/elements/summary.json index 609175ae39727d..2720fc9e241fe8 100644 --- a/html/elements/summary.json +++ b/html/elements/summary.json @@ -51,7 +51,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interactive-elements.html#the-summary-element" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/interactive-elements.html#the-summary-element" + } + ] }, "display_list_item": { "__compat": { diff --git a/html/elements/sup.json b/html/elements/sup.json index a7fe0e188c10ec..bf3cfc981e507b 100644 --- a/html/elements/sup.json +++ b/html/elements/sup.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-sub-and-sup-elements" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-sub-and-sup-elements" + } + ] } } } diff --git a/html/elements/table.json b/html/elements/table.json index 18451123bedcc2..4db107f15aaa97 100644 --- a/html/elements/table.json +++ b/html/elements/table.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#the-table-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-table-element" + } + ] }, "align": { "__compat": { diff --git a/html/elements/tbody.json b/html/elements/tbody.json index d02848decb1dd5..fdcc3fc7109868 100644 --- a/html/elements/tbody.json +++ b/html/elements/tbody.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#the-tbody-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-tbody-element" + } + ] }, "align": { "__compat": { diff --git a/html/elements/td.json b/html/elements/td.json index efb69bad237c2b..db7ca7e577d0ec 100644 --- a/html/elements/td.json +++ b/html/elements/td.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#the-td-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-td-element" + } + ] }, "abbr": { "__compat": { diff --git a/html/elements/template.json b/html/elements/template.json index c96b4f3cc8ab97..f7b019333fb4e1 100644 --- a/html/elements/template.json +++ b/html/elements/template.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/scripting.html#the-template-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50//scripting-1.html#the-template-element" + } + ] } } } diff --git a/html/elements/textarea.json b/html/elements/textarea.json index 95e037c2b25fe1..1a28a37a75cdfd 100644 --- a/html/elements/textarea.json +++ b/html/elements/textarea.json @@ -58,7 +58,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/forms.html#the-textarea-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/forms.html#the-textarea-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.7" + } + ] }, "autocapitalize": { "__compat": { diff --git a/html/elements/tfoot.json b/html/elements/tfoot.json index 7df6633d4b5d56..f6ef87061116f4 100644 --- a/html/elements/tfoot.json +++ b/html/elements/tfoot.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#the-tfoot-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-tfoot-element" + } + ] }, "align": { "__compat": { diff --git a/html/elements/th.json b/html/elements/th.json index 181ef389b4b8f6..8fe8629cb84bdf 100644 --- a/html/elements/th.json +++ b/html/elements/th.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#the-th-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-th-element" + } + ] }, "abbr": { "__compat": { diff --git a/html/elements/thead.json b/html/elements/thead.json index 11ffe00e58152e..a702bb60cd693b 100644 --- a/html/elements/thead.json +++ b/html/elements/thead.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#the-thead-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-thead-element" + } + ] }, "align": { "__compat": { diff --git a/html/elements/time.json b/html/elements/time.json index a375886872962f..95e79ea7a8700a 100644 --- a/html/elements/time.json +++ b/html/elements/time.json @@ -61,7 +61,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-time-element" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/grouping-content.html#the-time-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-time-element" + } + ] }, "datetime": { "__compat": { diff --git a/html/elements/title.json b/html/elements/title.json index 4dd61d6a8c2acc..82581cf5b8b986 100644 --- a/html/elements/title.json +++ b/html/elements/title.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-title-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/document-metadata.html#the-title-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.4.2" + } + ] } } } diff --git a/html/elements/tr.json b/html/elements/tr.json index 224f5ad85ea0e0..6cc435a29ee1d3 100644 --- a/html/elements/tr.json +++ b/html/elements/tr.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/tables.html#the-tr-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/tabular-data.html#the-tr-element" + } + ] }, "align": { "__compat": { diff --git a/html/elements/track.json b/html/elements/track.json index 8f5e5929312791..73ee087690c372 100644 --- a/html/elements/track.json +++ b/html/elements/track.json @@ -77,7 +77,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-track-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/embedded-content-0.html#the-track-element" + } + ] }, "default": { "__compat": { diff --git a/html/elements/u.json b/html/elements/u.json index a816473d3590f1..9470969fcbc474 100644 --- a/html/elements/u.json +++ b/html/elements/u.json @@ -50,7 +50,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-u-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-u-element" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/present/graphics.html#h-15.2.1" + } + ] } } } diff --git a/html/elements/ul.json b/html/elements/ul.json index ddf8aa9a9b3db8..09d526b059a7f8 100644 --- a/html/elements/ul.json +++ b/html/elements/ul.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-ul-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/grouping-content.html#the-ul-element" + } + ] }, "compact": { "__compat": { diff --git a/html/elements/var.json b/html/elements/var.json index e206633376e459..3a7b481b7e4253 100644 --- a/html/elements/var.json +++ b/html/elements/var.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-var-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-var-element" + } + ] } } } diff --git a/html/elements/video.json b/html/elements/video.json index 30242697370fc6..f66092d4714baf 100644 --- a/html/elements/video.json +++ b/html/elements/video.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-video-element" + } + ] }, "autoplay": { "__compat": { diff --git a/html/elements/wbr.json b/html/elements/wbr.json index 672c023f1142c6..9dd4339a07bc05 100644 --- a/html/elements/wbr.json +++ b/html/elements/wbr.json @@ -50,7 +50,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/semantics.html#the-wbr-element" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/text-level-semantics.html#the-wbr-element" + } + ] } } } diff --git a/html/global_attributes.json b/html/global_attributes.json index 67b31adce25aac..abeb49a69cb650 100644 --- a/html/global_attributes.json +++ b/html/global_attributes.json @@ -49,7 +49,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML5.2", + "url": "https://www.w3.org/TR/html52/editing.html#the-accesskey-attribute" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-accesskey-attribute" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#the-accesskey-attribute" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/editing.html#the-accesskey-attribute" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#h-17.11.2" + } + ] } }, "autocapitalize": { @@ -109,7 +131,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#autocapitalization" + } + ] } }, "class": { @@ -160,7 +188,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/elements.html#classes" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/elements.html#classes" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/elements.html#classes" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#h-7.5.2" + } + ] } }, "contenteditable": { @@ -208,7 +254,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Editing", + "url": "https://w3c.github.io/editing/contentEditable.html#contenteditable" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/editing.html#attr-contenteditable" + }, + { + "name": "HTML5.2", + "url": "https://www.w3.org/TR/html52/editing.html#attr-contenteditable" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#attr-contenteditable" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/editing.html#attr-contenteditable" + } + ] }, "events": { "__compat": { @@ -559,7 +627,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes" + } + ] } }, "dir": { @@ -610,7 +692,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#the-dir-attribute" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/dom.html#the-dir-attribute" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#the-dir-attribute" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/dirlang.html#h-8.2" + } + ] } }, "draggable": { @@ -658,7 +758,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-draggable-attribute" + }, + { + "name": "HTML5.2", + "url": "https://www.w3.org/TR/html52/interaction.html#the-draggable-attribute" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#the-draggable-attribute" + } + ] } }, "dropzone": { @@ -715,7 +829,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#the-dropzone-attribute" + } + ] } }, "hidden": { @@ -766,7 +886,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#the-hidden-attribute" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/rendering.html#hiddenCSS" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#the-hidden-attribute" + } + ] } }, "id": { @@ -833,7 +967,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#the-id-attribute" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/dom.html#the-id-attribute" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#the-id-attribute" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#adef-id" + } + ] } }, "is": { @@ -940,7 +1092,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is" + } + ] } }, "itemid": { @@ -991,7 +1149,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Microdata", + "url": "https://w3c.github.io/microdata/#items" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/microdata.html#attr-itemid" + } + ] } }, "itemprop": { @@ -1042,7 +1210,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Microdata", + "url": "https://w3c.github.io/microdata/#dfn-attr-itemprop" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/microdata.html#names:-the-itemprop-attribute" + } + ] } }, "itemref": { @@ -1093,7 +1271,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Microdata", + "url": "https://w3c.github.io/microdata/#dfn-itemref" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/microdata.html#attr-itemref" + } + ] } }, "itemscope": { @@ -1144,7 +1332,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Microdata", + "url": "https://w3c.github.io/microdata/#dfn-itemscope" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/microdata.html#attr-itemscope" + } + ] } }, "itemtype": { @@ -1195,7 +1393,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML Microdata", + "url": "https://w3c.github.io/microdata/#dfn-itemtype" + }, + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/microdata.html#attr-itemtype" + } + ] } }, "lang": { @@ -1246,7 +1454,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#the-lang-and-xml:lang-attributes" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/dom.html#the-lang-and-xml:lang-attributes" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#the-lang-and-xml:lang-attributes" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/dirlang.html#h-8.1" + } + ] } }, "slot": { @@ -1354,7 +1580,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#attr-slot" + }, + { + "name": "DOM WHATWG", + "url": "https://dom.spec.whatwg.org/#dom-element-slot" + } + ] } }, "spellcheck": { @@ -1405,7 +1641,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#spelling-and-grammar-checking" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#spelling-and-grammar-checking" + } + ] } }, "style": { @@ -1456,7 +1702,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#the-style-attribute" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/dom.html#the-style-attribute" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#the-style-attribute" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/present/styles.html#h-14.2.2" + } + ] } }, "tabindex": { @@ -1507,7 +1771,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/interaction.html#attr-tabindex" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/editing.html#attr-tabindex" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/editing.html#attr-tabindex" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/interact/forms.html#adef-tabindex" + } + ] } }, "title": { @@ -1558,7 +1840,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/elements.html#the-title-attribute" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/dom.html#the-title-attribute" + }, + { + "name": "HTML5 W3C", + "url": "https://www.w3.org/TR/html50/dom.html#the-title-attribute" + }, + { + "name": "HTML4.01", + "url": "https://www.w3.org/TR/html401/struct/global.html#adef-title" + } + ] }, "multi-line-support": { "__compat": { @@ -1660,7 +1960,17 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/dom.html#attr-translate" + }, + { + "name": "HTML5.1", + "url": "https://www.w3.org/TR/html51/dom.html#the-translate-attribute" + } + ] } } } diff --git a/http/headers/accept-charset.json b/http/headers/accept-charset.json index 6a8bce88388f48..4874ca33fd33a9 100644 --- a/http/headers/accept-charset.json +++ b/http/headers/accept-charset.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-5.3.3" + } + ] } } } diff --git a/http/headers/accept-encoding.json b/http/headers/accept-encoding.json index 61ec5c6062bfe7..9de6b16383d3f6 100644 --- a/http/headers/accept-encoding.json +++ b/http/headers/accept-encoding.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-5.3.4" + } + ] } } } diff --git a/http/headers/accept-language.json b/http/headers/accept-language.json index af07e9793328dd..459a43eecef7f0 100644 --- a/http/headers/accept-language.json +++ b/http/headers/accept-language.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-5.3.5" + } + ] } } } diff --git a/http/headers/accept-ranges.json b/http/headers/accept-ranges.json index dd17e651e58334..1d9604eb5b5fd9 100644 --- a/http/headers/accept-ranges.json +++ b/http/headers/accept-ranges.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7233#section-2.3" + } + ] } } } diff --git a/http/headers/accept.json b/http/headers/accept.json index f0180ea03b2f01..47944b7561a9cb 100644 --- a/http/headers/accept.json +++ b/http/headers/accept.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-5.3.2" + } + ] } } } diff --git a/http/headers/access-control-allow-credentials.json b/http/headers/access-control-allow-credentials.json index 656ad69cbccae9..46dfae6a15b355 100644 --- a/http/headers/access-control-allow-credentials.json +++ b/http/headers/access-control-allow-credentials.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#http-access-control-allow-credentials" + } + ] } } } diff --git a/http/headers/access-control-allow-headers.json b/http/headers/access-control-allow-headers.json index a41790ce6c4d72..22cdad508c2900 100644 --- a/http/headers/access-control-allow-headers.json +++ b/http/headers/access-control-allow-headers.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#http-access-control-allow-headers" + } + ] } } } diff --git a/http/headers/access-control-allow-methods.json b/http/headers/access-control-allow-methods.json index 885b46928fcf1c..2f9a411ea3d3e9 100644 --- a/http/headers/access-control-allow-methods.json +++ b/http/headers/access-control-allow-methods.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#http-access-control-allow-methods" + } + ] } } } diff --git a/http/headers/access-control-allow-origin.json b/http/headers/access-control-allow-origin.json index ddd6e6230f5e48..0ff4bb46764611 100644 --- a/http/headers/access-control-allow-origin.json +++ b/http/headers/access-control-allow-origin.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#http-access-control-allow-origin" + } + ] } } } diff --git a/http/headers/access-control-expose-headers.json b/http/headers/access-control-expose-headers.json index 761d9f5b2faed0..54c81b6f44e3de 100644 --- a/http/headers/access-control-expose-headers.json +++ b/http/headers/access-control-expose-headers.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#http-access-control-expose-headers" + } + ] } } } diff --git a/http/headers/access-control-max-age.json b/http/headers/access-control-max-age.json index d4af811179a05d..1b072a23c17137 100644 --- a/http/headers/access-control-max-age.json +++ b/http/headers/access-control-max-age.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#http-access-control-max-age" + } + ] } } } diff --git a/http/headers/access-control-request-headers.json b/http/headers/access-control-request-headers.json index 3c0525fcbf76e5..41293462b7a423 100644 --- a/http/headers/access-control-request-headers.json +++ b/http/headers/access-control-request-headers.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#http-access-control-request-headers" + } + ] } } } diff --git a/http/headers/access-control-request-method.json b/http/headers/access-control-request-method.json index 12482c79cf830c..317a3a150e33ab 100644 --- a/http/headers/access-control-request-method.json +++ b/http/headers/access-control-request-method.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#http-access-control-request-method" + } + ] } } } diff --git a/http/headers/age.json b/http/headers/age.json index 8c66446e4eba31..ab5c59d6f0b49d 100644 --- a/http/headers/age.json +++ b/http/headers/age.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7234#section-5.1" + } + ] } } } diff --git a/http/headers/content-encoding.json b/http/headers/content-encoding.json index bbf806992b9d90..c03eb5168fe471 100644 --- a/http/headers/content-encoding.json +++ b/http/headers/content-encoding.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-3.1.2.2" + } + ] }, "br": { "__compat": { diff --git a/http/headers/content-language.json b/http/headers/content-language.json index ed2c4e990d623c..c588be888b46d7 100644 --- a/http/headers/content-language.json +++ b/http/headers/content-language.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-3.1.3.2" + } + ] } } } diff --git a/http/headers/content-length.json b/http/headers/content-length.json index 321a8b16829391..a4249c5dde69f4 100644 --- a/http/headers/content-length.json +++ b/http/headers/content-length.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7230#section-3.3.2" + } + ] } } } diff --git a/http/headers/content-location.json b/http/headers/content-location.json index fb5031057580d3..4dc8c12f73449d 100644 --- a/http/headers/content-location.json +++ b/http/headers/content-location.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-3.1.4.2" + } + ] } } } diff --git a/http/headers/content-range.json b/http/headers/content-range.json index 2aaad6a6da81e4..7df54c27d90612 100644 --- a/http/headers/content-range.json +++ b/http/headers/content-range.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7233#section-4.2" + } + ] } } } diff --git a/http/headers/content-security-policy.json b/http/headers/content-security-policy.json index dc3acd65dbbb34..0295dd70562c8b 100644 --- a/http/headers/content-security-policy.json +++ b/http/headers/content-security-policy.json @@ -208,7 +208,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-base-uri" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-base-uri" + } + ] } }, "block-all-mixed-content": { @@ -259,7 +269,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Mixed Content", + "url": "https://w3c.github.io/webappsec-mixed-content/#block-all-mixed-content" + } + ] } }, "child-src": { @@ -362,7 +378,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-connect-src" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-connect-src" + } + ] } }, "default-src": { @@ -413,7 +439,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-default-src" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-default-src" + } + ] } }, "disown-opener": { @@ -514,7 +550,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-font-src" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-font-src" + } + ] } }, "form-action": { @@ -565,7 +611,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-form-action" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-form-action" + } + ] } }, "frame-ancestors": { @@ -618,7 +674,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-frame-ancestors" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-frame-ancestors" + } + ] } }, "frame-src": { @@ -669,7 +735,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-frame-src" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-frame-src" + } + ] } }, "img-src": { @@ -720,7 +796,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-img-src" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-img-src" + } + ] } }, "manifest-src": { @@ -771,7 +857,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-manifest-src" + } + ] } }, "media-src": { @@ -822,7 +914,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-media-src" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-media-src" + } + ] } }, "navigate-to": { @@ -923,7 +1025,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-object-src" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-object-src" + } + ] } }, "plugin-types": { @@ -975,7 +1087,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-plugin-types" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-plugin-types" + } + ] } }, "referrer": { @@ -1249,7 +1371,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Subresource Integrity", + "url": "https://w3c.github.io/webappsec/specs/subresourceintegrity/#opt-in-require-sri-for" + } + ] } }, "sandbox": { @@ -1300,7 +1428,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-sandbox" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-sandbox" + } + ] } }, "script-src": { @@ -1351,7 +1489,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-script-src" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-script-src" + } + ] }, "external_scripts": { "__compat": { @@ -1503,7 +1651,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-style-src" + }, + { + "name": "CSP 1.1", + "url": "https://w3c.github.io/webappsec-csp/2/#directive-style-src" + } + ] } }, "upgrade-insecure-requests": { @@ -1555,7 +1713,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Upgrade Insecure Requests", + "url": "https://w3c.github.io/webappsec-upgrade-insecure-requests/#delivery" + } + ] } }, "worker-src": { @@ -1609,7 +1773,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSP 3.0", + "url": "https://w3c.github.io/webappsec-csp/#directive-worker-src" + } + ] } } } diff --git a/http/headers/content-type.json b/http/headers/content-type.json index b852ec408418ed..0d38d4b3e8f0f6 100644 --- a/http/headers/content-type.json +++ b/http/headers/content-type.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7233#section-4.1" + }, + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-3.1.1.5" + } + ] } } } diff --git a/http/headers/cookie.json b/http/headers/cookie.json index 971a04c551caff..e0a51aabc003f9 100644 --- a/http/headers/cookie.json +++ b/http/headers/cookie.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc6265#section-5.4" + } + ] } } } diff --git a/http/headers/date.json b/http/headers/date.json index c3a811d52592a8..2592fe4792b769 100644 --- a/http/headers/date.json +++ b/http/headers/date.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-7.1.1.2" + } + ] } } } diff --git a/http/headers/dnt.json b/http/headers/dnt.json index b8b1e370f4b186..a764b3434e47fc 100644 --- a/http/headers/dnt.json +++ b/http/headers/dnt.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Tracking", + "url": "https://www.w3.org/2011/tracking-protection/drafts/tracking-dnt.html#dnt-header-field" + } + ] } } } diff --git a/http/headers/early-data.json b/http/headers/early-data.json index 981d30c1e2719a..9cda70bbe1d5a5 100644 --- a/http/headers/early-data.json +++ b/http/headers/early-data.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc8470#section-5.1" + } + ] } } } diff --git a/http/headers/etag.json b/http/headers/etag.json index ff36bfab6deba3..48b9c011eca14d 100644 --- a/http/headers/etag.json +++ b/http/headers/etag.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7232#section-2.3" + } + ] } } } diff --git a/http/headers/expect.json b/http/headers/expect.json index 09ba656a6e1cf6..6531408b3f07eb 100644 --- a/http/headers/expect.json +++ b/http/headers/expect.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-5.1.1" + } + ] } } } diff --git a/http/headers/expires.json b/http/headers/expires.json index 472e26717982f9..841a49979399c7 100644 --- a/http/headers/expires.json +++ b/http/headers/expires.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7234#section-5.3" + } + ] } } } diff --git a/http/headers/feature-policy.json b/http/headers/feature-policy.json index 6fd85d6dae91da..d299de143f33f1 100644 --- a/http/headers/feature-policy.json +++ b/http/headers/feature-policy.json @@ -49,7 +49,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Feature Policy", + "url": "https://wicg.github.io/feature-policy/#feature-policy-http-header-field" + } + ] }, "accelerometer": { "__compat": { @@ -510,7 +516,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Fullscreen", + "url": "https://fullscreen.spec.whatwg.org/#feature-policy-integration" + } + ] } }, "geolocation": { diff --git a/http/headers/forwarded.json b/http/headers/forwarded.json index 0931f003892382..87812ca875243c 100644 --- a/http/headers/forwarded.json +++ b/http/headers/forwarded.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7239#section-4" + } + ] } } } diff --git a/http/headers/from.json b/http/headers/from.json index 54d24b8cce63d5..1e8d4603b90d80 100644 --- a/http/headers/from.json +++ b/http/headers/from.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-5.5.1" + } + ] } } } diff --git a/http/headers/host.json b/http/headers/host.json index f77e1762044465..9c77f43178ebd5 100644 --- a/http/headers/host.json +++ b/http/headers/host.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7230#section-5.4" + } + ] } } } diff --git a/http/headers/if-modified-since.json b/http/headers/if-modified-since.json index 9499b1a6eb2239..bed20729c90020 100644 --- a/http/headers/if-modified-since.json +++ b/http/headers/if-modified-since.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7232#section-3.3" + } + ] } } } diff --git a/http/headers/if-range.json b/http/headers/if-range.json index 95671f81f25b13..79af0ac1fdf6c8 100644 --- a/http/headers/if-range.json +++ b/http/headers/if-range.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7233#section-3.2" + } + ] } } } diff --git a/http/headers/if-unmodified-since.json b/http/headers/if-unmodified-since.json index 552f001f81419c..0dfd22c773db45 100644 --- a/http/headers/if-unmodified-since.json +++ b/http/headers/if-unmodified-since.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7232#section-3.4" + } + ] } } } diff --git a/http/headers/keep-alive.json b/http/headers/keep-alive.json index a370fa75a7398c..7de23bd5f0f44b 100644 --- a/http/headers/keep-alive.json +++ b/http/headers/keep-alive.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/id/draft-thomson-hybi-http-timeout-01.html#rfc.section.2" + }, + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7230#appendix-A.1.2" + }, + { + "name": "", + "url": "https://tools.ietf.org/html/rfc2068#section-19.7.1.1" + } + ] } } } diff --git a/http/headers/last-modified.json b/http/headers/last-modified.json index fdd9f957e8098c..410f9b032f143c 100644 --- a/http/headers/last-modified.json +++ b/http/headers/last-modified.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7232#section-2.2" + } + ] } } } diff --git a/http/headers/location.json b/http/headers/location.json index eec032684e9b52..b73638355e664d 100644 --- a/http/headers/location.json +++ b/http/headers/location.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-7.1.2" + }, + { + "name": "", + "url": "https://tools.ietf.org/html/rfc2616#section-14.30" + } + ] } } } diff --git a/http/headers/origin.json b/http/headers/origin.json index d1a87321292af5..13955bf9da24f5 100644 --- a/http/headers/origin.json +++ b/http/headers/origin.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc6454#section-7" + }, + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#origin-header" + } + ] } } } diff --git a/http/headers/pragma.json b/http/headers/pragma.json index 3c7a33f3a01a86..f8097505ce8612 100644 --- a/http/headers/pragma.json +++ b/http/headers/pragma.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7234#section-5.4" + } + ] } } } diff --git a/http/headers/proxy-authenticate.json b/http/headers/proxy-authenticate.json index 8a9ea2252daf7b..df1ae788b68608 100644 --- a/http/headers/proxy-authenticate.json +++ b/http/headers/proxy-authenticate.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7235#section-4.3" + } + ] } } } diff --git a/http/headers/public-key-pins-report-only.json b/http/headers/public-key-pins-report-only.json index 51ef8a0a3528a1..50c5b5a95a51ae 100644 --- a/http/headers/public-key-pins-report-only.json +++ b/http/headers/public-key-pins-report-only.json @@ -51,7 +51,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7469#section-2.1" + } + ] } } } diff --git a/http/headers/public-key-pins.json b/http/headers/public-key-pins.json index 179f6509576299..34c83e52eab8a7 100644 --- a/http/headers/public-key-pins.json +++ b/http/headers/public-key-pins.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7469#section-2.1" + } + ] }, "report-uri": { "__compat": { diff --git a/http/headers/range.json b/http/headers/range.json index c8c3fd22f4443e..2b5038e4033915 100644 --- a/http/headers/range.json +++ b/http/headers/range.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7233#section-3.1" + } + ] } } } diff --git a/http/headers/referer.json b/http/headers/referer.json index 99dc240bd96f28..b8a084d6986fda 100644 --- a/http/headers/referer.json +++ b/http/headers/referer.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-5.5.2" + } + ] } } } diff --git a/http/headers/referrer-policy.json b/http/headers/referrer-policy.json index 3ecb7ef05dfffb..5c7b745972a1cd 100644 --- a/http/headers/referrer-policy.json +++ b/http/headers/referrer-policy.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-header" + } + ] }, "same-origin": { "__compat": { diff --git a/http/headers/retry-after.json b/http/headers/retry-after.json index 1e0e3e28b902d7..9448fa645adf9f 100644 --- a/http/headers/retry-after.json +++ b/http/headers/retry-after.json @@ -50,7 +50,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-7.1.3" + } + ] } } } diff --git a/http/headers/server-timing.json b/http/headers/server-timing.json index d38900c3f8e574..e9d4685213f04b 100644 --- a/http/headers/server-timing.json +++ b/http/headers/server-timing.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Server Timing", + "url": "https://w3c.github.io/server-timing/#the-server-timing-header-field" + } + ] } } } diff --git a/http/headers/server.json b/http/headers/server.json index c24ce83cc6c9c4..72fd40c8608183 100644 --- a/http/headers/server.json +++ b/http/headers/server.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-7.4.2" + } + ] } } } diff --git a/http/headers/set-cookie.json b/http/headers/set-cookie.json index 11b3b527ee1340..60a4287061f34d 100644 --- a/http/headers/set-cookie.json +++ b/http/headers/set-cookie.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc6265#section-4.1" + } + ] }, "Max-Age": { "__compat": { diff --git a/http/headers/te.json b/http/headers/te.json index 32eae81051886b..7bbb9d2ad2074e 100644 --- a/http/headers/te.json +++ b/http/headers/te.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7230#section-4.3" + } + ] } } } diff --git a/http/headers/timing-allow-origin.json b/http/headers/timing-allow-origin.json index 094f46113596ad..7daeaddcce673c 100644 --- a/http/headers/timing-allow-origin.json +++ b/http/headers/timing-allow-origin.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Resource Timing 3", + "url": "https://w3c.github.io/resource-timing/#timing-allow-origin" + } + ] } } } diff --git a/http/headers/tk.json b/http/headers/tk.json index 0111733effd595..e7ac3674ad96be 100644 --- a/http/headers/tk.json +++ b/http/headers/tk.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Tracking", + "url": "https://www.w3.org/2011/tracking-protection/drafts/tracking-dnt.html#Tk-header-defn" + } + ] } } } diff --git a/http/headers/trailer.json b/http/headers/trailer.json index 7f752dc6335072..0f1045c5d6a088 100644 --- a/http/headers/trailer.json +++ b/http/headers/trailer.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7230#section-4.4" + }, + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7230#section-4.1.2" + } + ] } } } diff --git a/http/headers/transfer-encoding.json b/http/headers/transfer-encoding.json index 3458b9eba2051f..0b562048284bda 100644 --- a/http/headers/transfer-encoding.json +++ b/http/headers/transfer-encoding.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7230#section-3.3.1" + } + ] } } } diff --git a/http/headers/upgrade-insecure-requests.json b/http/headers/upgrade-insecure-requests.json index 2654e9ea03948c..f0bda45773e4d1 100644 --- a/http/headers/upgrade-insecure-requests.json +++ b/http/headers/upgrade-insecure-requests.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Upgrade Insecure Requests", + "url": "https://w3c.github.io/webappsec-upgrade-insecure-requests/#preference" + } + ] } } } diff --git a/http/headers/user-agent.json b/http/headers/user-agent.json index ebb72531eb23d5..ba4985ddc5eb2a 100644 --- a/http/headers/user-agent.json +++ b/http/headers/user-agent.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-5.5.3" + } + ] } } } diff --git a/http/headers/vary.json b/http/headers/vary.json index f20fa5b303ee6d..1f56f6493e126d 100644 --- a/http/headers/vary.json +++ b/http/headers/vary.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-7.1.4" + } + ] } } } diff --git a/http/headers/via.json b/http/headers/via.json index a1628d58b2f6fa..cf466864a458bb 100644 --- a/http/headers/via.json +++ b/http/headers/via.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7230#section-5.7.1" + } + ] } } } diff --git a/http/headers/warning.json b/http/headers/warning.json index a0e5e60bd62eaf..e4a328cc89c44e 100644 --- a/http/headers/warning.json +++ b/http/headers/warning.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7234#section-5.5" + } + ] } } } diff --git a/http/headers/www-authenticate.json b/http/headers/www-authenticate.json index eb48dba8736a31..b48521c70096f5 100644 --- a/http/headers/www-authenticate.json +++ b/http/headers/www-authenticate.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7235#section-4.1" + } + ] } } } diff --git a/http/headers/x-content-type-options.json b/http/headers/x-content-type-options.json index 64ceddcf65bec3..8ffbb65e4d5936 100644 --- a/http/headers/x-content-type-options.json +++ b/http/headers/x-content-type-options.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": false, "deprecated": false - } + }, + "specs": [ + { + "name": "Fetch", + "url": "https://fetch.spec.whatwg.org/#x-content-type-options-header" + } + ] } } } diff --git a/http/methods.json b/http/methods.json index a02b7072fe1161..2f61993a1db5da 100644 --- a/http/methods.json +++ b/http/methods.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-4.3.6" + } + ] } }, "DELETE": { @@ -100,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-4.3.5" + } + ] } }, "GET": { @@ -151,7 +163,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-4.3.1" + } + ] } }, "HEAD": { @@ -202,7 +220,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-4.3.2" + } + ] } }, "OPTIONS": { @@ -253,7 +277,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-4.3.7" + } + ] } }, "POST": { @@ -304,7 +334,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-4.3.3" + } + ] } }, "PUT": { @@ -355,7 +391,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-4.3.4" + } + ] } }, "TRACE": { @@ -406,7 +448,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-4.3.8" + } + ] } } } diff --git a/http/status.json b/http/status.json index 74b64dd87493ff..52c35b5bee9326 100644 --- a/http/status.json +++ b/http/status.json @@ -49,7 +49,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.2.1" + } + ] } }, "200": { @@ -100,7 +106,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.3.1" + } + ] } }, "201": { @@ -151,7 +163,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.3.2" + } + ] } }, "204": { @@ -202,7 +220,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.3.5" + } + ] } }, "206": { @@ -253,7 +277,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7233#section-4.1" + } + ] } }, "301": { @@ -304,7 +334,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.4.2" + } + ] } }, "302": { @@ -355,7 +391,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.4.3" + } + ] } }, "303": { @@ -406,7 +448,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.4.4" + } + ] } }, "304": { @@ -457,7 +505,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7232#section-4.1" + } + ] } }, "307": { @@ -508,7 +562,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.4.7" + } + ] } }, "308": { @@ -560,7 +620,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7538#section-3" + } + ] } }, "401": { @@ -611,7 +677,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7235#section-3.1" + } + ] } }, "403": { @@ -662,7 +734,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.5.3" + } + ] } }, "404": { @@ -713,7 +791,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.5.4" + } + ] } }, "406": { @@ -764,7 +848,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.5.6" + } + ] } }, "407": { @@ -815,7 +905,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7235#section-3.2" + } + ] } }, "410": { @@ -866,7 +962,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.5.9" + } + ] } }, "412": { @@ -917,7 +1019,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7232#section-4.2" + } + ] } }, "416": { @@ -968,7 +1076,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7233#section-4.4" + } + ] } }, "425": { @@ -1019,7 +1133,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc8470#section-5.2" + } + ] } }, "451": { @@ -1121,7 +1241,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.6.1" + } + ] } }, "501": { @@ -1172,7 +1298,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.6.2" + } + ] } }, "502": { @@ -1223,7 +1355,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.6.3" + } + ] } }, "503": { @@ -1274,7 +1412,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.6.4" + } + ] } }, "504": { @@ -1325,7 +1469,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tools.ietf.org/html/rfc7231#section-6.6.4" + } + ] } } } diff --git a/javascript/builtins/Array.json b/javascript/builtins/Array.json index 2f8c830bdba1c6..04f8abf9649b08 100644 --- a/javascript/builtins/Array.json +++ b/javascript/builtins/Array.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array-objects" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-array-objects" + } + ] }, "concat": { "__compat": { @@ -105,7 +119,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.concat" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.concat" + } + ] } }, "copyWithin": { @@ -159,7 +187,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.copywithin" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-array.prototype.copywithin" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.copywithin" + } + ] } }, "entries": { @@ -213,7 +255,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.entries" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.entries" + } + ] } }, "every": { @@ -267,7 +319,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.16" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.every" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.every" + } + ] } }, "fill": { @@ -332,7 +398,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.fill" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.fill" + } + ] } }, "filter": { @@ -386,7 +462,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.20" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.filter" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.filter" + } + ] } }, "find": { @@ -451,7 +541,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.find" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.find" + } + ] } }, "findIndex": { @@ -516,7 +616,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.findindex" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.findIndex" + } + ] } }, "flat": { @@ -570,7 +680,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tc39.github.io/proposal-flatMap/#sec-Array.prototype.flat" + } + ] } }, "flatMap": { @@ -624,7 +740,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "", + "url": "https://tc39.github.io/proposal-flatMap/#sec-Array.prototype.flatMap" + } + ] } }, "forEach": { @@ -678,7 +800,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.18" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.foreach" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.foreach" + } + ] } }, "from": { @@ -732,7 +868,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.from" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.from" + } + ] } }, "includes": { @@ -797,7 +943,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-array.prototype.includes" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.includes" + } + ] } }, "indexOf": { @@ -851,7 +1007,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.14" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.indexof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.indexof" + } + ] } }, "isArray": { @@ -905,7 +1075,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.3.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.isarray" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.isarray" + } + ] } }, "join": { @@ -959,7 +1143,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.join" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.join" + } + ] } }, "keys": { @@ -1013,7 +1211,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.keys" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.keys" + } + ] } }, "lastIndexOf": { @@ -1067,7 +1275,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.15" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.lastindexof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.lastindexof" + } + ] } }, "length": { @@ -1121,7 +1343,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.5.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-properties-of-array-instances-length" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-properties-of-array-instances-length" + } + ] } }, "map": { @@ -1175,7 +1411,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.19" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.map" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.map" + } + ] } }, "observe": { @@ -1284,7 +1534,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.of" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.of" + } + ] } }, "pop": { @@ -1338,7 +1598,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.pop" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.pop" + } + ] } }, "prototype": { @@ -1392,7 +1666,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.3.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-array.prototype" + } + ] } }, "push": { @@ -1446,7 +1734,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.push" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.push" + } + ] } }, "reduce": { @@ -1500,7 +1802,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.21" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.reduce" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.reduce" + } + ] } }, "reduceRight": { @@ -1554,7 +1870,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.22" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.reduceright" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.reduceright" + } + ] } }, "reverse": { @@ -1608,7 +1938,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.reverse" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.reverse" + } + ] } }, "shift": { @@ -1662,7 +2006,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.9" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.shift" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.shift" + } + ] } }, "slice": { @@ -1716,7 +2074,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.10" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.slice" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.slice" + } + ] } }, "some": { @@ -1770,7 +2142,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.17" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.some" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.some" + } + ] } }, "sort": { @@ -1824,7 +2210,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.sort" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.sort" + } + ] } }, "splice": { @@ -1878,7 +2278,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.12" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.splice" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.splice" + } + ] } }, "toLocaleString": { @@ -1932,7 +2346,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.tolocalestring" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#sup-array.prototype.tolocalestring" + } + ] }, "locales": { "__compat": { @@ -2148,7 +2572,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.tostring" + } + ] } }, "unobserve": { @@ -2257,7 +2695,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.13" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.unshift" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.unshift" + } + ] } }, "values": { @@ -2327,7 +2779,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.values" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype.values" + } + ] } }, "@@iterator": { @@ -2409,7 +2871,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype-@@iterator" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator" + } + ] } }, "@@species": { @@ -2474,7 +2946,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-array-@@species" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-array-@@species" + } + ] } }, "@@unscopables": { @@ -2528,7 +3010,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype-@@unscopables" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables" + } + ] } } } diff --git a/javascript/builtins/ArrayBuffer.json b/javascript/builtins/ArrayBuffer.json index 5485ca383cd7a9..f04ada6f14d6e8 100644 --- a/javascript/builtins/ArrayBuffer.json +++ b/javascript/builtins/ArrayBuffer.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-arraybuffer-constructor" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-arraybuffer-constructor" + } + ] }, "new_required": { "__compat": { @@ -159,7 +169,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-arraybuffer.prototype.bytelength" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-arraybuffer.prototype.bytelength" + } + ] } }, "isView": { @@ -213,7 +233,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-arraybuffer.isview" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-arraybuffer.isview" + } + ] } }, "prototype": { @@ -267,7 +297,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-arraybuffer.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-arraybuffer.prototype" + } + ] } }, "slice": { @@ -323,7 +363,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-arraybuffer.prototype.slice" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-arraybuffer.prototype.slice" + } + ] } }, "transfer": { @@ -442,7 +492,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-arraybuffer-@@species" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-arraybuffer-@@species" + } + ] } } } diff --git a/javascript/builtins/AsyncFunction.json b/javascript/builtins/AsyncFunction.json index 187575d8830fc8..580305ec84158d 100644 --- a/javascript/builtins/AsyncFunction.json +++ b/javascript/builtins/AsyncFunction.json @@ -63,7 +63,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-async-function-objects" + } + ] }, "prototype": { "__compat": { @@ -127,7 +133,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-async-function-constructor-prototype" + } + ] } } } diff --git a/javascript/builtins/Atomics.json b/javascript/builtins/Atomics.json index 999a51952ab5ca..90508bf5168b0d 100644 --- a/javascript/builtins/Atomics.json +++ b/javascript/builtins/Atomics.json @@ -115,7 +115,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics-object" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-atomics-object" + } + ] }, "add": { "__compat": { @@ -231,7 +241,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.add" + } + ] } }, "and": { @@ -348,7 +364,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.and" + } + ] } }, "compareExchange": { @@ -465,7 +487,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.compareexchange" + } + ] } }, "exchange": { @@ -582,7 +610,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.exchange" + } + ] } }, "isLockFree": { @@ -699,7 +733,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.islockfree" + } + ] } }, "load": { @@ -816,7 +856,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.load" + } + ] } }, "notify": { @@ -989,7 +1035,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.notify" + } + ] } }, "or": { @@ -1106,7 +1158,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.or" + } + ] } }, "store": { @@ -1223,7 +1281,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.store" + } + ] } }, "sub": { @@ -1340,7 +1404,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.sub" + } + ] } }, "wait": { @@ -1483,7 +1553,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.wait" + } + ] } }, "xor": { @@ -1600,7 +1676,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-atomics.xor" + } + ] } } } diff --git a/javascript/builtins/Boolean.json b/javascript/builtins/Boolean.json index 64f12e0d2001f8..9f671896add336 100644 --- a/javascript/builtins/Boolean.json +++ b/javascript/builtins/Boolean.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-boolean-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-boolean-objects" + } + ] }, "prototype": { "__compat": { @@ -105,7 +119,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.6.3.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-boolean.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-boolean.prototype" + } + ] } }, "toSource": { @@ -213,7 +241,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.6.4.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-boolean.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-boolean.prototype.tostring" + } + ] } }, "valueOf": { @@ -267,7 +309,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.6.4.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-boolean.prototype.valueof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-boolean.prototype.valueof" + } + ] } } } diff --git a/javascript/builtins/DataView.json b/javascript/builtins/DataView.json index 644ee72e288cc0..f28277ef85f9b5 100644 --- a/javascript/builtins/DataView.json +++ b/javascript/builtins/DataView.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview-constructor" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview-constructor" + } + ] }, "new_required": { "__compat": { @@ -213,7 +223,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-dataview.prototype.buffer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-dataview.prototype.buffer" + } + ] }, "sharedarraybuffer_support": { "__compat": { @@ -321,7 +341,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-dataview.prototype.bytelength" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-dataview.prototype.bytelength" + } + ] } }, "byteOffset": { @@ -375,7 +405,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-dataview.prototype.byteoffset" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-dataview.prototype.byteoffset" + } + ] } }, "getFloat32": { @@ -429,7 +469,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.getfloat32" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.getfloat32" + } + ] } }, "getFloat64": { @@ -483,7 +533,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.getfloat64" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.getfloat64" + } + ] } }, "getInt16": { @@ -537,7 +597,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.getint16" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.getint16" + } + ] } }, "getInt32": { @@ -591,7 +661,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.getint32" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.getint32" + } + ] } }, "getInt8": { @@ -645,7 +725,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.getint8" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.getint8" + } + ] } }, "getUint16": { @@ -699,7 +789,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.getuint16" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.getuint16" + } + ] } }, "getUint32": { @@ -753,7 +853,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.getuint32" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.getuint32" + } + ] } }, "getUint8": { @@ -807,7 +917,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.getuint8" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.getuint8" + } + ] } }, "setFloat32": { @@ -861,7 +981,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.setfloat32" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.setfloat32" + } + ] } }, "setFloat64": { @@ -915,7 +1045,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.setfloat64" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.setfloat64" + } + ] } }, "setInt16": { @@ -969,7 +1109,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.setint16" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.setint16" + } + ] } }, "setInt32": { @@ -1023,7 +1173,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.setint32" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.setint32" + } + ] } }, "setInt8": { @@ -1077,7 +1237,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.setint8" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.setint8" + } + ] } }, "setUint16": { @@ -1131,7 +1301,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.setuint16" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.setuint16" + } + ] } }, "setUint32": { @@ -1185,7 +1365,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.setuint32" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.setuint32" + } + ] } }, "setUint8": { @@ -1239,7 +1429,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.setuint8" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype.setuint8" + } + ] } }, "prototype": { @@ -1293,7 +1493,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-dataview.prototype" + } + ] } } } diff --git a/javascript/builtins/Date.json b/javascript/builtins/Date.json index cd23d507294446..5ddf31047ed197 100644 --- a/javascript/builtins/Date.json +++ b/javascript/builtins/Date.json @@ -53,7 +53,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date-objects" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date-objects" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9" + } + ] }, "@@toPrimitive": { "__compat": { @@ -106,7 +120,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype-@@toprimitive" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype-@@toprimitive" + } + ] } }, "UTC": { @@ -160,7 +184,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.utc" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.utc" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.4.3" + } + ] } }, "getDate": { @@ -214,7 +252,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getdate" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getdate" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.14" + } + ] } }, "getDay": { @@ -268,7 +320,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getday" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getday" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.16" + } + ] } }, "getFullYear": { @@ -322,7 +388,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.10" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getfullyear" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getfullyear" + } + ] } }, "getHours": { @@ -376,7 +456,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.18" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.gethours" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.gethours" + } + ] } }, "getMilliseconds": { @@ -430,7 +524,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.24" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getmilliseconds" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getmilliseconds" + } + ] } }, "getMinutes": { @@ -484,7 +592,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.20" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getminutes" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getminutes" + } + ] } }, "getMonth": { @@ -538,7 +660,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.12" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getmonth" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getmonth" + } + ] } }, "getSeconds": { @@ -592,7 +728,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.22" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getseconds" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getseconds" + } + ] } }, "getTime": { @@ -646,7 +796,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.9" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.gettime" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.gettime" + } + ] } }, "getTimezoneOffset": { @@ -700,7 +864,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.26" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.gettimezoneoffset" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.gettimezoneoffset" + } + ] } }, "getUTCDate": { @@ -754,7 +932,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.15" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getutcdate" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getutcdate" + } + ] } }, "getUTCDay": { @@ -808,7 +1000,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.17" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getutcday" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getutcday" + } + ] } }, "getUTCFullYear": { @@ -862,7 +1068,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getutcfullyear" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getutcfullyear" + } + ] } }, "getUTCHours": { @@ -916,7 +1136,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.19" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getutchours" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getutchours" + } + ] } }, "getUTCMilliseconds": { @@ -970,7 +1204,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.25" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getutcmilliseconds" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getutcmilliseconds" + } + ] } }, "getUTCMinutes": { @@ -1024,7 +1272,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.21" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getutcminutes" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getutcminutes" + } + ] } }, "getUTCMonth": { @@ -1078,7 +1340,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.13" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getutcmonth" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getutcmonth" + } + ] } }, "getUTCSeconds": { @@ -1132,7 +1408,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.23" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.getutcseconds" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.getutcseconds" + } + ] } }, "getYear": { @@ -1240,7 +1530,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.4.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.now" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.now" + } + ] } }, "parse": { @@ -1294,7 +1598,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.4.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.parse" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.parse" + } + ] }, "iso_8601": { "__compat": { @@ -1402,7 +1720,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-properties-of-the-date-prototype-object" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-properties-of-the-date-prototype-object" + } + ] }, "ordinary_object": { "__compat": { @@ -1510,7 +1842,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.36" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setdate" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setdate" + } + ] } }, "setFullYear": { @@ -1564,7 +1910,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.40" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setfullyear" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setfullyear" + } + ] } }, "setHours": { @@ -1618,7 +1978,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.34" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.sethours" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.sethours" + } + ] } }, "setMilliseconds": { @@ -1672,7 +2046,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.28" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setmilliseconds" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setmilliseconds" + } + ] } }, "setMinutes": { @@ -1726,7 +2114,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.32" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setminutes" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setminutes" + } + ] } }, "setMonth": { @@ -1780,7 +2182,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.38" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setmonth" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setmonth" + } + ] } }, "setSeconds": { @@ -1834,7 +2250,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.30" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setseconds" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setseconds" + } + ] } }, "setTime": { @@ -1888,7 +2318,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.27" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.settime" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.settime" + } + ] } }, "setUTCDate": { @@ -1942,7 +2386,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.37" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setutcdate" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setutcdate" + } + ] } }, "setUTCFullYear": { @@ -1996,7 +2454,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.41" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setutcfullyear" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setutcfullyear" + } + ] } }, "setUTCHours": { @@ -2050,7 +2522,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.35" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setutchours" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setutchours" + } + ] } }, "setUTCMilliseconds": { @@ -2104,7 +2590,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.29" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setutcmilliseconds" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setutcmilliseconds" + } + ] } }, "setUTCMinutes": { @@ -2158,7 +2658,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.33" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setutcminutes" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setutcminutes" + } + ] } }, "setUTCMonth": { @@ -2212,7 +2726,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.39" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setutcmonth" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setutcmonth" + } + ] } }, "setUTCSeconds": { @@ -2266,7 +2794,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.31" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.setutcseconds" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.setutcseconds" + } + ] } }, "setYear": { @@ -2374,7 +2916,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.todatestring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.todatestring" + } + ] } }, "toGMTString": { @@ -2482,7 +3038,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.43" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.toisostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.toisostring" + } + ] } }, "toJSON": { @@ -2536,7 +3106,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.44" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.tojson" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.tojson" + } + ] } }, "toLocaleDateString": { @@ -2590,7 +3174,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.tolocaledatestring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.tolocaledatestring" + }, + { + "name": "ES Int 1.0", + "url": "https://www.ecma-international.org/ecma-402/1.0/#sec-13.3.2" + }, + { + "name": "ES Int 2.0", + "url": "https://www.ecma-international.org/ecma-402/2.0/#sec-13.3.2" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#sec-Date.prototype.toLocaleDateString" + } + ] }, "locales": { "__compat": { @@ -2860,7 +3466,33 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.tolocalestring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.tolocalestring" + }, + { + "name": "ES Int 1.0", + "url": "https://www.ecma-international.org/ecma-402/1.0/#sec-13.3.1" + }, + { + "name": "ES Int 2.0", + "url": "https://www.ecma-international.org/ecma-402/2.0/#sec-13.3.1" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#sec-Date.prototype.toLocaleString" + } + ] }, "locales": { "__compat": { @@ -3074,7 +3706,33 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.tolocalestring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.tolocalestring" + }, + { + "name": "ES Int 1.0", + "url": "https://www.ecma-international.org/ecma-402/1.0/#sec-13.3.3" + }, + { + "name": "ES Int 2.0", + "url": "https://www.ecma-international.org/ecma-402/2.0/#sec-13.3.3" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#sec-Date.prototype.toLocaleTimeString" + } + ] }, "locales": { "__compat": { @@ -3342,7 +4000,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.tostring" + } + ] } }, "toTimeString": { @@ -3396,7 +4068,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.totimestring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.totimestring" + } + ] } }, "toUTCString": { @@ -3450,7 +4136,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.42" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.toutcstring" + }, + { + "name": "ES2018", + "url": "https://www.ecma-international.org/ecma-262/9.0/#sec-date.prototype.toutcstring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.toutcstring" + } + ] } }, "valueOf": { @@ -3504,7 +4208,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-date.prototype.valueof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-date.prototype.valueof" + } + ] } } } diff --git a/javascript/builtins/Error.json b/javascript/builtins/Error.json index a7bda7afecbbdb..e2cb8847997a27 100644 --- a/javascript/builtins/Error.json +++ b/javascript/builtins/Error.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-error-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-error-objects" + } + ] }, "prototype": { "__compat": { @@ -105,7 +119,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11.3.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-error.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-error.prototype" + } + ] } }, "columnNumber": { @@ -321,7 +349,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11.4.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-error.prototype.message" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-error.prototype.message" + } + ] } }, "name": { @@ -375,7 +417,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11.4.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-error.prototype.name" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-error.prototype.name" + } + ] } }, "stack": { @@ -537,7 +593,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11.4.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-error.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-error.prototype.tostring" + } + ] } } } diff --git a/javascript/builtins/EvalError.json b/javascript/builtins/EvalError.json index 2a1dd323539353..fb52c06f17ed87 100644 --- a/javascript/builtins/EvalError.json +++ b/javascript/builtins/EvalError.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11.6.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-native-error-types-used-in-this-standard-evalerror" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard-evalerror" + } + ] } } } diff --git a/javascript/builtins/Float32Array.json b/javascript/builtins/Float32Array.json index da79c6b294025c..d6d5501bf61852 100644 --- a/javascript/builtins/Float32Array.json +++ b/javascript/builtins/Float32Array.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#table-49" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#table-49" + } + ] }, "new_required": { "__compat": { diff --git a/javascript/builtins/Float64Array.json b/javascript/builtins/Float64Array.json index 6149f02d9ee939..560621eb13568b 100644 --- a/javascript/builtins/Float64Array.json +++ b/javascript/builtins/Float64Array.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#table-49" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#table-49" + } + ] }, "new_required": { "__compat": { diff --git a/javascript/builtins/Function.json b/javascript/builtins/Function.json index c4b9c34fc53222..b5713258c38110 100644 --- a/javascript/builtins/Function.json +++ b/javascript/builtins/Function.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function-objects" + } + ] }, "arguments": { "__compat": { @@ -321,7 +335,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.3.5.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function-instances-length" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function-instances-length" + } + ] }, "configurable_true": { "__compat": { @@ -429,7 +457,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-name" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function-instances-name" + } + ] }, "configurable_true": { "__compat": { @@ -591,7 +629,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.3.5.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function-instances-prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function-instances-prototype" + } + ] } }, "apply": { @@ -645,7 +697,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.3.4.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function.prototype.apply" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function.prototype.apply" + } + ] }, "generic_arrays_as_arguments": { "__compat": { @@ -753,7 +819,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.3.4.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function.prototype.bind" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function.prototype.bind" + } + ] } }, "call": { @@ -807,7 +887,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.3.4.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function.prototype.call" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function.prototype.call" + } + ] } }, "isGenerator": { @@ -971,7 +1065,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function.prototype.tostring" + } + ] }, "toString_revision": { "__compat": { diff --git a/javascript/builtins/Generator.json b/javascript/builtins/Generator.json index ffb8ff2937fb19..abb2c55fe2068b 100644 --- a/javascript/builtins/Generator.json +++ b/javascript/builtins/Generator.json @@ -63,7 +63,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-generator-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-generator-objects" + } + ] }, "next": { "__compat": { @@ -116,7 +126,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-generator.prototype.next" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-generator.prototype.next" + } + ] } }, "return": { @@ -170,7 +190,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-generator.prototype.return" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-generator.prototype.return" + } + ] } }, "throw": { @@ -235,7 +265,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-generator.prototype.throw" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-generator.prototype.throw" + } + ] } } } diff --git a/javascript/builtins/GeneratorFunction.json b/javascript/builtins/GeneratorFunction.json index 75006efb9f0464..df87327101224f 100644 --- a/javascript/builtins/GeneratorFunction.json +++ b/javascript/builtins/GeneratorFunction.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-generatorfunction-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-generatorfunction-objects" + } + ] }, "prototype": { "__compat": { @@ -105,7 +115,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-generatorfunction.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-generatorfunction.prototype" + } + ] } } } diff --git a/javascript/builtins/Int16Array.json b/javascript/builtins/Int16Array.json index 66076365b0c466..bb57ebc9ed8ed2 100644 --- a/javascript/builtins/Int16Array.json +++ b/javascript/builtins/Int16Array.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#table-49" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#table-49" + } + ] }, "new_required": { "__compat": { diff --git a/javascript/builtins/Int32Array.json b/javascript/builtins/Int32Array.json index 709a9bfb5ce5d5..1f5e99c4afcea0 100644 --- a/javascript/builtins/Int32Array.json +++ b/javascript/builtins/Int32Array.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#table-49" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#table-49" + } + ] }, "new_required": { "__compat": { diff --git a/javascript/builtins/Int8Array.json b/javascript/builtins/Int8Array.json index 0087cd33c14fa9..aaf4f091c0973a 100644 --- a/javascript/builtins/Int8Array.json +++ b/javascript/builtins/Int8Array.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#table-49" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#table-49" + } + ] }, "new_required": { "__compat": { diff --git a/javascript/builtins/Intl.json b/javascript/builtins/Intl.json index 474236835b820b..ed98faa0408ff2 100644 --- a/javascript/builtins/Intl.json +++ b/javascript/builtins/Intl.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES Int 1.0", + "url": "https://www.ecma-international.org/ecma-402/1.0/#sec-8" + }, + { + "name": "ES Int 2.0", + "url": "https://www.ecma-international.org/ecma-402/2.0/#sec-8" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#intl-object" + } + ] }, "getCanonicalLocales": { "__compat": { @@ -105,7 +119,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#sec-intl.getcanonicallocales" + } + ] } }, "Collator": { @@ -159,7 +179,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES Int 1.0", + "url": "https://www.ecma-international.org/ecma-402/1.0/#sec-10.1" + }, + { + "name": "ES Int 2.0", + "url": "https://www.ecma-international.org/ecma-402/2.0/#sec-10.1" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#collator-objects" + } + ] }, "caseFirst": { "__compat": { @@ -483,7 +517,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES Int 1.0", + "url": "https://www.ecma-international.org/ecma-402/1.0/#sec-12.1" + }, + { + "name": "ES Int 2.0", + "url": "https://www.ecma-international.org/ecma-402/2.0/#sec-12.1" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#datetimeformat-objects" + } + ] }, "iana_time_zone_names": { "__compat": { @@ -980,7 +1028,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES Int 1.0", + "url": "https://www.ecma-international.org/ecma-402/1.0/#sec-11.1" + }, + { + "name": "ES Int 2.0", + "url": "https://www.ecma-international.org/ecma-402/2.0/#sec-11.1" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#numberformat-objects" + } + ] }, "prototype": { "__compat": { diff --git a/javascript/builtins/JSON.json b/javascript/builtins/JSON.json index 409b041f18d9c2..71b1b585c0b0ba 100644 --- a/javascript/builtins/JSON.json +++ b/javascript/builtins/JSON.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.12" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-json-object" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-json-object" + } + ] }, "parse": { "__compat": { @@ -105,7 +119,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.12.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-json.parse" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-json.parse" + } + ] } }, "stringify": { @@ -159,7 +187,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.12.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-json.stringify" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-json.stringify" + } + ] } }, "json_superset": { @@ -214,7 +256,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.12" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-json-object" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-json-object" + } + ] } } } diff --git a/javascript/builtins/Map.json b/javascript/builtins/Map.json index 82c6cd32fd8b40..802cc6a33078a0 100644 --- a/javascript/builtins/Map.json +++ b/javascript/builtins/Map.json @@ -63,7 +63,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map-objects" + } + ] }, "map_iterable": { "__compat": { @@ -343,7 +353,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype.clear" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype.clear" + } + ] } }, "delete": { @@ -408,7 +428,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype.delete" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype.delete" + } + ] } }, "entries": { @@ -462,7 +492,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype.entries" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype.entries" + } + ] } }, "forEach": { @@ -516,7 +556,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype.foreach" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype.foreach" + } + ] } }, "get": { @@ -570,7 +620,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype.get" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype.get" + } + ] } }, "has": { @@ -624,7 +684,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype.has" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype.has" + } + ] } }, "keys": { @@ -678,7 +748,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype.keys" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype.keys" + } + ] } }, "prototype": { @@ -732,7 +812,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype" + } + ] } }, "set": { @@ -788,7 +878,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype.set" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype.set" + } + ] } }, "size": { @@ -844,7 +944,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-map.prototype.size" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-map.prototype.size" + } + ] } }, "values": { @@ -898,7 +1008,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype.values" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype.values" + } + ] } }, "@@iterator": { @@ -980,7 +1100,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype-@@iterator" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype-@@iterator" + } + ] } }, "@@species": { @@ -1045,7 +1175,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-map-@@species" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-map-@@species" + } + ] } }, "@@toStringTag": { @@ -1099,7 +1239,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-map.prototype-@@tostringtag" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-map.prototype-@@tostringtag" + } + ] } } } diff --git a/javascript/builtins/Math.json b/javascript/builtins/Math.json index 7317e6b70b30d3..f3ad94b5e57e66 100644 --- a/javascript/builtins/Math.json +++ b/javascript/builtins/Math.json @@ -53,7 +53,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.1.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.e" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.e" + } + ] } }, "LN2": { @@ -107,7 +121,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.1.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.ln2" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.ln2" + } + ] } }, "LN10": { @@ -161,7 +189,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.1.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.ln10" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.ln10" + } + ] } }, "LOG2E": { @@ -215,7 +257,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.1.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.log2e" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.log2e" + } + ] } }, "LOG10E": { @@ -269,7 +325,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.1.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.log10e" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.log10e" + } + ] } }, "PI": { @@ -323,7 +393,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.1.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.pi" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.pi" + } + ] } }, "SQRT1_2": { @@ -377,7 +461,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.1.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.sqrt1_2" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.sqrt1_2" + } + ] } }, "SQRT2": { @@ -431,7 +529,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.1.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.sqrt2" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.sqrt2" + } + ] } }, "abs": { @@ -485,7 +597,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.abs" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.abs" + } + ] } }, "acos": { @@ -539,7 +665,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.acos" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.acos" + } + ] } }, "acosh": { @@ -593,7 +733,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.acosh" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.acosh" + } + ] } }, "asin": { @@ -647,7 +797,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.asin" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.asin" + } + ] } }, "asinh": { @@ -701,7 +865,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.asinh" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.asinh" + } + ] } }, "atan": { @@ -755,7 +929,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.atan" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.atan" + } + ] } }, "atan2": { @@ -809,7 +997,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.atan2" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.atan2" + } + ] } }, "atanh": { @@ -863,7 +1065,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.atanh" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.atanh" + } + ] } }, "cbrt": { @@ -917,7 +1129,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.cbrt" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.cbrt" + } + ] } }, "ceil": { @@ -971,7 +1193,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.ceil" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.ceil" + } + ] } }, "clz32": { @@ -1025,7 +1261,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.clz32" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.clz32" + } + ] } }, "cos": { @@ -1079,7 +1325,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.cos" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.cos" + } + ] } }, "cosh": { @@ -1133,7 +1393,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.cosh" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.cosh" + } + ] } }, "exp": { @@ -1187,7 +1457,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.exp" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.exp" + } + ] } }, "expm1": { @@ -1241,7 +1525,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.expm1" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.expm1" + } + ] } }, "floor": { @@ -1295,7 +1589,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.9" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.floor" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.floor" + } + ] } }, "fround": { @@ -1349,7 +1657,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.fround" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.fround" + } + ] } }, "hypot": { @@ -1403,7 +1721,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.hypot" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.hypot" + } + ] } }, "imul": { @@ -1457,7 +1785,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.imul" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.imul" + } + ] } }, "log": { @@ -1511,7 +1849,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.10" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.log" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.log" + } + ] } }, "log1p": { @@ -1565,7 +1917,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.log1p" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.log1p" + } + ] } }, "log2": { @@ -1619,7 +1981,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.log2" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.log2" + } + ] } }, "log10": { @@ -1673,7 +2045,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.log10" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.log10" + } + ] } }, "max": { @@ -1727,7 +2109,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.max" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.max" + } + ] } }, "min": { @@ -1781,7 +2177,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.12" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.min" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.min" + } + ] } }, "pow": { @@ -1835,7 +2245,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.13" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.pow" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.pow" + } + ] } }, "random": { @@ -1889,7 +2313,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.14" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.random" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.random" + } + ] } }, "round": { @@ -1943,7 +2381,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.15" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.round" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.round" + } + ] } }, "sign": { @@ -1997,7 +2449,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.sign" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.sign" + } + ] } }, "sin": { @@ -2051,7 +2513,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.16" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.sin" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.sin" + } + ] } }, "sinh": { @@ -2105,7 +2581,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.sinh" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.sinh" + } + ] } }, "sqrt": { @@ -2159,7 +2645,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.17" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.sqrt" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.sqrt" + } + ] } }, "tan": { @@ -2213,7 +2713,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.18" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.tan" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.tan" + } + ] } }, "tanh": { @@ -2267,7 +2781,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.tanh" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.tanh" + } + ] } }, "trunc": { @@ -2321,7 +2845,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-math.trunc" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-math.trunc" + } + ] } } } diff --git a/javascript/builtins/Number.json b/javascript/builtins/Number.json index 6b6f9bbc5fc9f6..bd89bb70c8ae60 100644 --- a/javascript/builtins/Number.json +++ b/javascript/builtins/Number.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number-objects" + } + ] }, "EPSILON": { "__compat": { @@ -105,7 +119,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.epsilon" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.epsilon" + } + ] } }, "MAX_SAFE_INTEGER": { @@ -159,7 +183,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.max_safe_integer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.max_safe_integer" + } + ] } }, "MAX_VALUE": { @@ -213,7 +247,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.3.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.max_value" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.max_value" + } + ] } }, "MIN_SAFE_INTEGER": { @@ -267,7 +315,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.min_safe_integer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.min_safe_integer" + } + ] } }, "MIN_VALUE": { @@ -321,7 +379,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.3.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.min_value" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.min_value" + } + ] } }, "NEGATIVE_INFINITY": { @@ -375,7 +447,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.3.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.negative_infinity" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.negative_infinity" + } + ] } }, "NaN": { @@ -429,7 +515,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.3.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.nan" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.nan" + } + ] } }, "POSITIVE_INFINITY": { @@ -483,7 +583,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.3.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.positive_infinity" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.positive_infinity" + } + ] } }, "isFinite": { @@ -537,7 +651,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.isfinite" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.isfinite" + } + ] } }, "isInteger": { @@ -591,7 +715,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.isinteger" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.isinteger" + } + ] } }, "isNaN": { @@ -645,7 +779,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.isnan" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.isnan" + } + ] } }, "isSafeInteger": { @@ -699,7 +843,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.issafeinteger" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.issafeinteger" + } + ] } }, "parseFloat": { @@ -753,7 +907,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.parsefloat" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.parsefloat" + } + ] } }, "parseInt": { @@ -807,7 +971,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.parseint" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.parseint" + } + ] } }, "prototype": { @@ -861,7 +1035,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-properties-of-the-number-prototype-object" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-properties-of-the-number-prototype-object" + } + ] } }, "toExponential": { @@ -915,7 +1103,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.4.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.prototype.toexponential" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.prototype.toexponential" + } + ] } }, "toFixed": { @@ -969,7 +1171,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.4.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.prototype.tofixed" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.prototype.tofixed" + } + ] } }, "toInteger": { @@ -1079,7 +1295,33 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.4.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.prototype.tolocalestring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.prototype.tolocalestring" + }, + { + "name": "ES Int 1.0", + "url": "https://www.ecma-international.org/ecma-402/1.0/#sec-13.2.1" + }, + { + "name": "ES Int 2.0", + "url": "https://www.ecma-international.org/ecma-402/2.0/#sec-13.2.1" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#sec-Number.prototype.toLocaleString" + } + ] }, "locales": { "__compat": { @@ -1239,7 +1481,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.4.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.prototype.toprecision" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.prototype.toprecision" + } + ] } }, "toSource": { @@ -1347,7 +1603,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.4.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.prototype.tostring" + } + ] } }, "valueOf": { @@ -1401,7 +1671,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.7.4.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-number.prototype.valueof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-number.prototype.valueof" + } + ] } } } diff --git a/javascript/builtins/Object.json b/javascript/builtins/Object.json index 53edeb23ebf423..f267b575ef7e8f 100644 --- a/javascript/builtins/Object.json +++ b/javascript/builtins/Object.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object-objects" + } + ] }, "prototype": { "__compat": { @@ -105,7 +119,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.prototype" + } + ] } }, "count": { @@ -381,7 +409,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.4.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.prototype.constructor" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.prototype.constructor" + } + ] } }, "assign": { @@ -435,7 +477,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.assign" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.assign" + } + ] } }, "create": { @@ -489,7 +541,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.create" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.create" + } + ] } }, "defineProperties": { @@ -543,7 +609,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.defineproperties" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.defineproperties" + } + ] } }, "defineProperty": { @@ -599,7 +679,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.defineproperty" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.defineproperty" + } + ] } }, "entries": { @@ -664,7 +758,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.entries" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-object.entries" + } + ] } }, "freeze": { @@ -718,7 +822,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.9" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.freeze" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.freeze" + } + ] } }, "fromEntries": { @@ -881,7 +999,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.getownpropertydescriptor" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor" + } + ] } }, "getOwnPropertyDescriptors": { @@ -946,7 +1078,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-object.getownpropertydescriptors" + } + ] } }, "getOwnPropertyNames": { @@ -1000,7 +1142,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.getownpropertynames" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.getownpropertynames" + } + ] } }, "getOwnPropertySymbols": { @@ -1054,7 +1210,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.getownpropertysymbols" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.getownpropertysymbols" + } + ] } }, "getPrototypeOf": { @@ -1108,7 +1274,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.getprototypeof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.getprototypeof" + } + ] } }, "is": { @@ -1162,7 +1342,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.is" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.is" + } + ] } }, "isExtensible": { @@ -1216,7 +1406,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.13" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.isextensible" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.isextensible" + } + ] } }, "isFrozen": { @@ -1270,7 +1474,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.12" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.isfrozen" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.isfrozen" + } + ] } }, "isSealed": { @@ -1324,7 +1542,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.issealed" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.issealed" + } + ] } }, "keys": { @@ -1378,7 +1610,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.14" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.keys" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.keys" + } + ] } }, "observe": { @@ -1487,7 +1733,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.10" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.preventextensions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.preventextensions" + } + ] }, "ES2015_behavior": { "__compat": { @@ -1871,7 +2131,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.4.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.prototype.hasownproperty" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.prototype.hasownproperty" + } + ] } }, "isPrototypeOf": { @@ -1925,7 +2199,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.4.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.prototype.isprototypeof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.prototype.isprototypeof" + } + ] } }, "propertyIsEnumerable": { @@ -1979,7 +2267,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.4.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.prototype.propertyisenumerable" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable" + } + ] } }, "toLocaleString": { @@ -2033,7 +2335,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.4.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.prototype.tolocalestring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.prototype.tolocalestring" + } + ] } }, "toSource": { @@ -2141,7 +2457,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.4.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.prototype.tostring" + } + ] } }, "unwatch": { @@ -2251,7 +2581,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.4.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.prototype.valueof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.prototype.valueof" + } + ] } }, "watch": { @@ -2361,7 +2705,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.2.3.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.seal" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.seal" + } + ] } }, "setPrototypeOf": { @@ -2415,7 +2773,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object.setprototypeof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.setprototypeof" + } + ] } }, "unobserve": { @@ -2535,7 +2903,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object.values" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-object.values" + } + ] } } } diff --git a/javascript/builtins/Promise.json b/javascript/builtins/Promise.json index d65e242eeb6407..894f53d1e1db7e 100644 --- a/javascript/builtins/Promise.json +++ b/javascript/builtins/Promise.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-promise-objects" + } + ] }, "Promise": { "__compat": { @@ -111,7 +121,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-promise-objects" + } + ] } }, "all": { @@ -165,7 +185,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-promise.all" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-promise.all" + } + ] } }, "prototype": { @@ -219,7 +249,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-promise.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-promise.prototype" + } + ] } }, "catch": { @@ -273,7 +313,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-promise.prototype.catch" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-promise.prototype.catch" + } + ] } }, "finally": { @@ -381,7 +431,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-promise.prototype.then" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-promise.prototype.then" + } + ] } }, "race": { @@ -435,7 +495,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-promise.race" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-promise.race" + } + ] } }, "reject": { @@ -489,7 +559,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-promise.reject" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-promise.reject" + } + ] } }, "resolve": { @@ -543,7 +623,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-promise.resolve" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-promise.resolve" + } + ] } } } diff --git a/javascript/builtins/Proxy.json b/javascript/builtins/Proxy.json index 03d10434627c62..40e1879825d13d 100644 --- a/javascript/builtins/Proxy.json +++ b/javascript/builtins/Proxy.json @@ -52,7 +52,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-proxy-objects" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-proxy-objects" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-proxy-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-proxy-objects" + } + ] }, "revocable": { "__compat": { @@ -105,7 +123,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-proxy.revocable" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-proxy.revocable" + } + ] } }, "handler": { diff --git a/javascript/builtins/RangeError.json b/javascript/builtins/RangeError.json index b0f56842717fa1..af2cb3bd06d706 100644 --- a/javascript/builtins/RangeError.json +++ b/javascript/builtins/RangeError.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11.6.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-native-error-types-used-in-this-standard-rangeerror" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard-rangeerror" + } + ] } } } diff --git a/javascript/builtins/ReferenceError.json b/javascript/builtins/ReferenceError.json index cacbda57706f6e..83e60645811a6a 100644 --- a/javascript/builtins/ReferenceError.json +++ b/javascript/builtins/ReferenceError.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11.6.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-native-error-types-used-in-this-standard-referenceerror" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard-referenceerror" + } + ] } } } diff --git a/javascript/builtins/Reflect.json b/javascript/builtins/Reflect.json index 55e188477eb71e..45523cf0cdac16 100644 --- a/javascript/builtins/Reflect.json +++ b/javascript/builtins/Reflect.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect-object" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect-object" + } + ] }, "apply": { "__compat": { @@ -105,7 +115,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.apply" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.apply" + } + ] } }, "construct": { @@ -159,7 +179,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.construct" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.construct" + } + ] } }, "defineProperty": { @@ -213,7 +243,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.defineproperty" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.defineproperty" + } + ] } }, "deleteProperty": { @@ -267,7 +307,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.deleteproperty" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.deleteproperty" + } + ] } }, "enumerate": { @@ -376,7 +426,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.get" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.get" + } + ] } }, "getOwnPropertyDescriptor": { @@ -430,7 +490,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.getownpropertydescriptor" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.getownpropertydescriptor" + } + ] } }, "getPrototypeOf": { @@ -484,7 +554,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.getprototypeof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.getprototypeof" + } + ] } }, "has": { @@ -538,7 +618,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.has" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.has" + } + ] } }, "isExtensible": { @@ -592,7 +682,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.isextensible" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.isextensible" + } + ] } }, "ownKeys": { @@ -646,7 +746,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.ownkeys" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.ownkeys" + } + ] } }, "preventExtensions": { @@ -700,7 +810,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.preventextensions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.preventextensions" + } + ] } }, "set": { @@ -754,7 +874,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.set" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.set" + } + ] } }, "setPrototypeOf": { @@ -808,7 +938,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-reflect.setprototypeof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-reflect.setprototypeof" + } + ] } } } diff --git a/javascript/builtins/RegExp.json b/javascript/builtins/RegExp.json index af1b29d76457a9..aebe84b4ba75fd 100644 --- a/javascript/builtins/RegExp.json +++ b/javascript/builtins/RegExp.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.10" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-regexp-regular-expression-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-regexp-regular-expression-objects" + } + ] }, "compile": { "__compat": { @@ -159,7 +173,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.10.6.21" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-regexp.prototype.exec" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-regexp.prototype.exec" + } + ] } }, "flags": { @@ -213,7 +241,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-regexp.prototype.flags" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags" + } + ] } }, "global": { @@ -267,7 +305,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.10.7.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-regexp.prototype.global" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-regexp.prototype.global" + } + ] }, "prototype_accessor": { "__compat": { @@ -375,7 +427,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.10.7.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-regexp.prototype.ignorecase" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-regexp.prototype.ignorecase" + } + ] }, "prototype_accessor": { "__compat": { @@ -538,7 +604,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.10.7.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-properties-of-regexp-instances" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-properties-of-regexp-instances" + } + ] } }, "lastMatch": { @@ -811,7 +891,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.10.7.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-regexp.prototype.multiline" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-regexp.prototype.multiline" + } + ] }, "prototype_accessor": { "__compat": { @@ -974,7 +1068,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.10.5.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-regexp.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-regexp.prototype" + } + ] } }, "rightContext": { @@ -1083,7 +1191,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.10.7.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-regexp.prototype.source" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-regexp.prototype.source" + } + ] }, "prototype_accessor": { "__compat": { @@ -1299,7 +1421,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-regexp.prototype.sticky" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-regexp.prototype.sticky" + } + ] }, "prototype_accessor": { "__compat": { @@ -1461,7 +1593,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.10.6.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-regexp.prototype.test" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-regexp.prototype.test" + } + ] } }, "toSource": { @@ -1569,7 +1715,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.5.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-regexp.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-regexp.prototype.tostring" + } + ] }, "escaping": { "__compat": { @@ -1732,7 +1892,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-regexp.prototype.unicode" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-regexp.prototype.unicode" + } + ] } }, "@@match": { @@ -1786,7 +1956,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-regexp.prototype-@@match" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-regexp.prototype-@@match" + } + ] } }, "@@replace": { @@ -1840,7 +2020,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-regexp.prototype-@@replace" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace" + } + ] } }, "@@search": { @@ -1894,7 +2084,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-regexp.prototype-@@search" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-regexp.prototype-@@search" + } + ] } }, "@@species": { @@ -1959,7 +2159,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-regexp-@@species" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-regexp-@@species" + } + ] } }, "@@split": { @@ -2013,7 +2223,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-regexp.prototype-@@split" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split" + } + ] } } } diff --git a/javascript/builtins/Set.json b/javascript/builtins/Set.json index 454298f1e32c60..d2925963b79446 100644 --- a/javascript/builtins/Set.json +++ b/javascript/builtins/Set.json @@ -63,7 +63,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-set-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-set-objects" + } + ] }, "set_iterable": { "__compat": { @@ -345,7 +355,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-set.prototype.add" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-set.prototype.add" + } + ] } }, "clear": { @@ -399,7 +419,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-set.prototype.clear" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-set.prototype.clear" + } + ] } }, "delete": { @@ -464,7 +494,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-set.prototype.delete" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-set.prototype.delete" + } + ] } }, "entries": { @@ -518,7 +558,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-set.prototype.entries" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-set.prototype.entries" + } + ] } }, "forEach": { @@ -572,7 +622,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-set.prototype.foreach" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-set.prototype.foreach" + } + ] } }, "has": { @@ -626,7 +686,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-set.prototype.has" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-set.prototype.has" + } + ] } }, "prototype": { @@ -680,7 +750,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-set.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-set.prototype" + } + ] } }, "size": { @@ -736,7 +816,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-set.prototype.size" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-set.prototype.size" + } + ] } }, "values": { @@ -790,7 +880,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-set.prototype.values" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-set.prototype.values" + } + ] } }, "@@iterator": { @@ -872,7 +972,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-set.prototype-@@iterator" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-set.prototype-@@iterator" + } + ] } }, "@@species": { @@ -937,7 +1047,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-set-@@species" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-set-@@species" + } + ] } } } diff --git a/javascript/builtins/SharedArrayBuffer.json b/javascript/builtins/SharedArrayBuffer.json index ab99b2622c2566..fe3ecbfe541364 100644 --- a/javascript/builtins/SharedArrayBuffer.json +++ b/javascript/builtins/SharedArrayBuffer.json @@ -115,7 +115,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-sharedarraybuffer-objects" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-sharedarraybuffer-objects" + } + ] }, "sab_in_dataview": { "__compat": { @@ -348,7 +358,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-sharedarraybuffer.prototype" + } + ] } }, "byteLength": { @@ -465,7 +481,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-sharedarraybuffer.prototype.bytelength" + } + ] } }, "slice": { @@ -582,7 +604,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-sharedarraybuffer.prototype.slice" + } + ] } } } diff --git a/javascript/builtins/String.json b/javascript/builtins/String.json index 165f6bbf9c25b4..c7717ca4fca91e 100644 --- a/javascript/builtins/String.json +++ b/javascript/builtins/String.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string-objects" + } + ] }, "@@iterator": { "__compat": { @@ -133,7 +147,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype-@@iterator" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator" + } + ] } }, "unicode_code_point_escapes": { @@ -458,7 +482,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.charat" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.charat" + } + ] } }, "charCodeAt": { @@ -512,7 +550,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.charcodeat" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.charcodeat" + } + ] } }, "codePointAt": { @@ -577,7 +629,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.codepointat" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.codepointat" + } + ] } }, "concat": { @@ -631,7 +693,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.concat" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.concat" + } + ] } }, "endsWith": { @@ -696,7 +772,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.endswith" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.endswith" + } + ] } }, "fixed": { @@ -912,7 +998,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.3.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.fromcharcodes" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.fromcharcodes" + } + ] } }, "fromCodePoint": { @@ -977,7 +1077,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.fromcodepoint" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.fromcodepoint" + } + ] } }, "includes": { @@ -1045,7 +1155,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.includes" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.includes" + } + ] } }, "indexOf": { @@ -1099,7 +1219,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.indexof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.indexof" + } + ] } }, "italics": { @@ -1207,7 +1341,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.lastindexof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.lastindexof" + } + ] } }, "length": { @@ -1261,7 +1409,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.5.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-properties-of-string-instances-length" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-properties-of-string-instances-length" + } + ] } }, "link": { @@ -1369,7 +1531,33 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.9" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.localecompare" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.localecompare" + }, + { + "name": "ES Int 1.0", + "url": "https://www.ecma-international.org/ecma-402/1.0/#sec-13.1.1" + }, + { + "name": "ES Int 2.0", + "url": "https://www.ecma-international.org/ecma-402/2.0/#sec-13.1.1" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#sec-String.prototype.localeCompare" + } + ] }, "locales": { "__compat": { @@ -1529,7 +1717,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.10" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.match" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.match" + } + ] }, "flags": { "__compat": { @@ -1638,7 +1840,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.normalize" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.normalize" + } + ] } }, "padEnd": { @@ -1703,7 +1915,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.padend" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-string.prototype.padend" + } + ] } }, "padStart": { @@ -1768,7 +1990,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.padstart" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-string.prototype.padstart" + } + ] } }, "prototype": { @@ -1822,7 +2054,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.3.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype" + } + ] } }, "quote": { @@ -1932,7 +2178,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.raw" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.raw" + } + ] } }, "repeat": { @@ -1997,7 +2253,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.repeat" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.repeat" + } + ] } }, "replace": { @@ -2051,7 +2317,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.replace" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.replace" + } + ] }, "flags": { "__compat": { @@ -2160,7 +2440,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.12" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.search" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.search" + } + ] }, "flags": { "__compat": { @@ -2269,7 +2563,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.13" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.slice" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.slice" + } + ] } }, "small": { @@ -2377,7 +2685,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.14" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.split" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.split" + } + ] } }, "startsWith": { @@ -2442,7 +2764,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.startswith" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.startswith" + } + ] } }, "strike": { @@ -2658,7 +2990,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.15" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.substring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.substring" + } + ] } }, "sup": { @@ -2766,7 +3112,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.17" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.tolocalelowercase" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.tolocalelowercase" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#sup-string.prototype.tolocalelowercase" + } + ] }, "locale": { "__compat": { @@ -2873,7 +3237,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.19" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.tolocaleuppercase" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.tolocaleuppercase" + }, + { + "name": "ES Int Draft", + "url": "https://tc39.github.io/ecma402/#sup-string.prototype.tolocaleuppercase" + } + ] }, "locale": { "__compat": { @@ -2980,7 +3362,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.16" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.tolowercase" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.tolowercase" + } + ] } }, "toSource": { @@ -3088,7 +3484,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.tostring" + } + ] } }, "toUpperCase": { @@ -3142,7 +3552,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.18" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.touppercase" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.touppercase" + } + ] } }, "trim": { @@ -3196,7 +3620,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.20" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.trim" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.trim" + } + ] } }, "trimEnd": { @@ -3418,7 +3856,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.valueof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-string.prototype.valueof" + } + ] } } } diff --git a/javascript/builtins/Symbol.json b/javascript/builtins/Symbol.json index e93b1efd83b126..c03845c587b0fa 100644 --- a/javascript/builtins/Symbol.json +++ b/javascript/builtins/Symbol.json @@ -53,7 +53,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol-objects" + } + ] }, "asyncIterator": { "__compat": { @@ -214,7 +224,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.for" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.for" + } + ] } }, "hasInstance": { @@ -279,7 +299,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.hasinstance" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.hasinstance" + } + ] } }, "isConcatSpreadable": { @@ -333,7 +363,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.isconcatspreadable" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.isconcatspreadable" + } + ] } }, "iterator": { @@ -387,7 +427,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.iterator" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.iterator" + } + ] } }, "keyFor": { @@ -441,7 +491,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.keyfor" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.keyfor" + } + ] } }, "match": { @@ -495,7 +555,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.match" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.match" + } + ] } }, "prototype": { @@ -549,7 +619,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.prototype" + } + ] } }, "replace": { @@ -603,7 +683,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.replace" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.replace" + } + ] } }, "search": { @@ -657,7 +747,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.search" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.search" + } + ] } }, "species": { @@ -722,7 +822,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.species" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.species" + } + ] } }, "split": { @@ -776,7 +886,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.split" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.split" + } + ] } }, "toPrimitive": { @@ -830,7 +950,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.toprimitive" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.toprimitive" + } + ] } }, "toSource": { @@ -938,7 +1068,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.prototype.tostring" + } + ] } }, "toStringTag": { @@ -1003,7 +1143,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.tostringtag" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.tostringtag" + } + ] } }, "unscopables": { @@ -1057,7 +1207,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.unscopables" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.unscopables" + } + ] } }, "valueOf": { @@ -1111,7 +1271,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.prototype.valueof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.prototype.valueof" + } + ] } }, "@@toPrimitive": { @@ -1165,7 +1335,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-symbol.prototype-@@toprimitive" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive" + } + ] } } } diff --git a/javascript/builtins/SyntaxError.json b/javascript/builtins/SyntaxError.json index 0d719eccdee7fc..0d49dda087d517 100644 --- a/javascript/builtins/SyntaxError.json +++ b/javascript/builtins/SyntaxError.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11.6.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-native-error-types-used-in-this-standard-syntaxerror" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard-syntaxerror" + } + ] } } } diff --git a/javascript/builtins/TypeError.json b/javascript/builtins/TypeError.json index fbc0952702833a..83f03da7bdf46d 100644 --- a/javascript/builtins/TypeError.json +++ b/javascript/builtins/TypeError.json @@ -52,7 +52,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-15.11.6.5" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11.6.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-native-error-types-used-in-this-standard-typeerror" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard-typeerror" + } + ] } } } diff --git a/javascript/builtins/TypedArray.json b/javascript/builtins/TypedArray.json index b232833485a715..62d3f5b514fae3 100644 --- a/javascript/builtins/TypedArray.json +++ b/javascript/builtins/TypedArray.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-typedarray-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-typedarray-objects" + } + ] }, "constructor_without_arguments": { "__compat": { @@ -380,7 +390,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-typedarray.bytes_per_element" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-typedarray.bytes_per_element" + } + ] } }, "buffer": { @@ -434,7 +454,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-%typedarray%.prototype.buffer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-%typedarray%.prototype.buffer" + } + ] } }, "byteLength": { @@ -488,7 +518,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-%typedarray%.prototype.bytelength" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-%typedarray%.prototype.bytelength" + } + ] } }, "byteOffset": { @@ -542,7 +582,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-%typedarray%.prototype.byteoffset" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-%typedarray%.prototype.byteoffset" + } + ] } }, "copyWithin": { @@ -596,7 +646,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.copywithin" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.copywithin" + } + ] } }, "entries": { @@ -650,7 +710,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.entries" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.entries" + } + ] } }, "every": { @@ -704,7 +774,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.every" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.every" + } + ] } }, "fill": { @@ -758,7 +838,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.fill" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.fill" + } + ] } }, "filter": { @@ -812,7 +902,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.filter" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.filter" + } + ] } }, "find": { @@ -866,7 +966,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.find" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.find" + } + ] } }, "findIndex": { @@ -920,7 +1030,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.findindex" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.findindex" + } + ] } }, "forEach": { @@ -974,7 +1094,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.foreach" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.foreach" + } + ] } }, "from": { @@ -1028,7 +1158,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.from" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.from" + } + ] } }, "includes": { @@ -1093,7 +1233,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-%typedarray%.prototype.includes" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.includes" + } + ] } }, "indexOf": { @@ -1149,7 +1299,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.indexof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.indexof" + } + ] } }, "join": { @@ -1203,7 +1363,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.join" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.join" + } + ] } }, "keys": { @@ -1257,7 +1427,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.keys" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.keys" + } + ] } }, "lastIndexOf": { @@ -1313,7 +1493,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.lastindexof" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.lastindexof" + } + ] } }, "length": { @@ -1367,7 +1557,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-%typedarray%.prototype.length" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-%typedarray%.prototype.length" + } + ] } }, "map": { @@ -1421,7 +1621,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.map" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.map" + } + ] } }, "move": { @@ -1533,7 +1743,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-properties-of-the-typedarray-constructors" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-properties-of-the-typedarray-constructors" + } + ] } }, "of": { @@ -1587,7 +1807,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.of" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.of" + } + ] } }, "prototype": { @@ -1641,7 +1871,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-properties-of-the-%typedarrayprototype%-object" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-properties-of-the-%typedarrayprototype%-object" + } + ] } }, "reduce": { @@ -1695,7 +1935,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.reduce" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.reduce" + } + ] } }, "reduceRight": { @@ -1749,7 +1999,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.reduceRight" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.reduceRight" + } + ] } }, "reverse": { @@ -1803,7 +2063,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.reverse" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.reverse" + } + ] } }, "set": { @@ -1857,7 +2127,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.set-array-offset" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.set-array-offset" + } + ] } }, "slice": { @@ -1911,7 +2191,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.slice" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.slice" + } + ] } }, "some": { @@ -1965,7 +2255,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.some" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.some" + } + ] } }, "sort": { @@ -2019,7 +2319,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.sort" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.sort" + } + ] } }, "subarray": { @@ -2073,7 +2383,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.subarray" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.subarray" + } + ] } }, "toLocaleString": { @@ -2127,7 +2447,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.tolocalestring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.tolocalestring" + } + ] } }, "toString": { @@ -2181,7 +2511,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.tostring" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.tostring" + } + ] } }, "values": { @@ -2235,7 +2575,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.values" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.values" + } + ] } }, "@@iterator": { @@ -2317,7 +2667,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype-@@iterator" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-%typedarray%.prototype-@@iterator" + } + ] } }, "@@species": { @@ -2382,7 +2742,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-get-%typedarray%-@@species" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-get-%typedarray%-@@species" + } + ] } } } diff --git a/javascript/builtins/URIError.json b/javascript/builtins/URIError.json index 4721f2929778bc..5282bbb155463c 100644 --- a/javascript/builtins/URIError.json +++ b/javascript/builtins/URIError.json @@ -52,7 +52,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-15.11.6.6" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.11.6.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-native-error-types-used-in-this-standard-urierror" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard-urierror" + } + ] } } } diff --git a/javascript/builtins/Uint16Array.json b/javascript/builtins/Uint16Array.json index 526bec9f27cc57..8c70ae5da9ab8e 100644 --- a/javascript/builtins/Uint16Array.json +++ b/javascript/builtins/Uint16Array.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#table-49" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#table-49" + } + ] }, "new_required": { "__compat": { diff --git a/javascript/builtins/Uint32Array.json b/javascript/builtins/Uint32Array.json index 087a35463dbfa2..cd283fc10638a3 100644 --- a/javascript/builtins/Uint32Array.json +++ b/javascript/builtins/Uint32Array.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#table-49" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#table-49" + } + ] }, "new_required": { "__compat": { diff --git a/javascript/builtins/Uint8Array.json b/javascript/builtins/Uint8Array.json index bb37b9da2f38cf..065bd0989a3846 100644 --- a/javascript/builtins/Uint8Array.json +++ b/javascript/builtins/Uint8Array.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#table-49" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#table-49" + } + ] }, "new_required": { "__compat": { diff --git a/javascript/builtins/Uint8ClampedArray.json b/javascript/builtins/Uint8ClampedArray.json index bbfc6ef7f96ac1..a90a7f03e280f6 100644 --- a/javascript/builtins/Uint8ClampedArray.json +++ b/javascript/builtins/Uint8ClampedArray.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#table-49" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#table-49" + } + ] }, "new_required": { "__compat": { diff --git a/javascript/builtins/WeakMap.json b/javascript/builtins/WeakMap.json index 7f58416e06f401..2e6949b51a1084 100644 --- a/javascript/builtins/WeakMap.json +++ b/javascript/builtins/WeakMap.json @@ -63,7 +63,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakmap-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakmap-objects" + } + ] }, "weakmap_iterable": { "__compat": { @@ -365,7 +375,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakmap.prototype.delete" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakmap.prototype.delete" + } + ] } }, "get": { @@ -432,7 +452,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakmap.prototype.get" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakmap.prototype.get" + } + ] } }, "has": { @@ -499,7 +529,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakmap.prototype.has" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakmap.prototype.has" + } + ] } }, "prototype": { @@ -564,7 +604,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakmap.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakmap.prototype" + } + ] } }, "set": { @@ -633,7 +683,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakmap.prototype.set" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakmap.prototype.set" + } + ] } } } diff --git a/javascript/builtins/WeakSet.json b/javascript/builtins/WeakSet.json index 06516de25a4f85..27d575028c3d92 100644 --- a/javascript/builtins/WeakSet.json +++ b/javascript/builtins/WeakSet.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakset-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakset-objects" + } + ] }, "weakset_iterable": { "__compat": { @@ -213,7 +223,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakset.prototype.add" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakset.prototype.add" + } + ] } }, "clear": { @@ -328,7 +348,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakset.prototype.delete" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakset.prototype.delete" + } + ] } }, "has": { @@ -382,7 +412,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakset.prototype.has" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakset.prototype.has" + } + ] } }, "prototype": { @@ -436,7 +476,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-weakset.prototype" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-weakset.prototype" + } + ] } } } diff --git a/javascript/builtins/WebAssembly.json b/javascript/builtins/WebAssembly.json index 73656b42f9f512..f74856c63b305d 100644 --- a/javascript/builtins/WebAssembly.json +++ b/javascript/builtins/WebAssembly.json @@ -60,7 +60,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#the-webassembly-object" + } + ] }, "CompileError": { "__compat": { @@ -121,7 +127,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#constructor-properties-of-the-webassembly-object" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard" + } + ] } }, "Global": { @@ -175,7 +191,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#globals" + } + ] }, "value": { "__compat": { @@ -345,7 +367,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#webassemblyinstance-objects" + } + ] }, "exports": { "__compat": { @@ -531,7 +559,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#constructor-properties-of-the-webassembly-object" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard" + } + ] } }, "Memory": { @@ -593,7 +631,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#webassemblymemory-objects" + } + ] }, "buffer": { "__compat": { @@ -841,7 +885,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#webassemblymodule-objects" + } + ] }, "customSections": { "__compat": { @@ -1151,7 +1201,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#constructor-properties-of-the-webassembly-object" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-native-error-types-used-in-this-standard" + } + ] } }, "Table": { @@ -1213,7 +1273,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#webassemblytable-objects" + } + ] }, "get": { "__compat": { @@ -1585,7 +1651,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#webassemblycompile" + } + ] } }, "compileStreaming": { @@ -1639,7 +1711,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly Embedding", + "url": "https://github.com/WebAssembly/design/blob/master/Web.md#webassemblycompilestreaming" + } + ] } }, "instantiate": { @@ -1701,7 +1779,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#webassemblyinstantiate" + } + ] } }, "instantiateStreaming": { @@ -1755,7 +1839,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly Embedding", + "url": "https://github.com/WebAssembly/design/blob/master/Web.md#webassemblyinstantiatestreaming" + } + ] } }, "validate": { @@ -1817,7 +1907,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebAssembly JS", + "url": "https://webassembly.github.io/spec/js-api/#webassemblyvalidate" + } + ] } } } diff --git a/javascript/builtins/globals.json b/javascript/builtins/globals.json index fcbbf7ad7db880..9a9d5fac250f3d 100644 --- a/javascript/builtins/globals.json +++ b/javascript/builtins/globals.json @@ -52,7 +52,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.1.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-value-properties-of-the-global-object-infinity" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-value-properties-of-the-global-object-infinity" + } + ] } }, "NaN": { @@ -106,7 +120,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.1.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-value-properties-of-the-global-object-nan" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-value-properties-of-the-global-object-nan" + } + ] } }, "decodeURI": { @@ -160,7 +188,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.3.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-decodeuri-encodeduri" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-decodeuri-encodeduri" + } + ] } }, "decodeURIComponent": { @@ -214,7 +256,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.3.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-decodeuricomponent-encodeduricomponent" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-decodeuricomponent-encodeduricomponent" + } + ] } }, "encodeURI": { @@ -268,7 +324,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.3.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-encodeuri-uri" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-encodeuri-uri" + } + ] } }, "encodeURIComponent": { @@ -322,7 +392,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.3.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-encodeuricomponent-uricomponent" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-encodeuricomponent-uricomponent" + } + ] } }, "escape": { @@ -430,7 +514,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.2.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-eval-x" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-eval-x" + } + ] } }, "isFinite": { @@ -484,7 +582,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.2.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-isfinite-number" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-isfinite-number" + } + ] } }, "isNaN": { @@ -538,7 +650,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.2.4" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-isnan-number" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-isnan-number" + } + ] } }, "null": { @@ -592,7 +718,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-4.3.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-null-value" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-null-value" + } + ] } }, "parseFloat": { @@ -646,7 +786,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.2.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-parsefloat-string" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-parsefloat-string" + } + ] } }, "parseInt": { @@ -700,7 +854,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.2.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-parseint-string-radix" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-parseint-string-radix" + } + ] }, "leading_zero_strings_as_decimal": { "__compat": { @@ -808,7 +976,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-4.3.9" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.1.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-undefined" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-undefined" + } + ] } }, "unescape": { diff --git a/javascript/classes.json b/javascript/classes.json index 51875a891cdddb..7d5a8279943c39 100644 --- a/javascript/classes.json +++ b/javascript/classes.json @@ -72,7 +72,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-class-definitions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-class-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-class-definitions" + } + ] }, "constructor": { "__compat": { @@ -146,7 +164,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-static-semantics-constructormethod" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-static-semantics-constructormethod" + } + ] } }, "extends": { @@ -221,7 +249,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-class-definitions" + } + ] } }, "static": { @@ -296,7 +334,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-class-definitions" + } + ] } } } diff --git a/javascript/functions.json b/javascript/functions.json index 12075c131b6ec6..0c38608b0c2c0b 100644 --- a/javascript/functions.json +++ b/javascript/functions.json @@ -51,7 +51,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-13" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function-definitions" + } + ] }, "arguments": { "__compat": { @@ -104,7 +118,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-10.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-arguments-exotic-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-arguments-exotic-objects" + } + ] }, "callee": { "__compat": { @@ -157,7 +185,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-10.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-arguments-exotic-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-arguments-exotic-objects" + } + ] } }, "caller": { @@ -266,7 +308,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-10.6" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-arguments-exotic-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-arguments-exotic-objects" + } + ] } }, "@@iterator": { @@ -320,7 +376,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-createunmappedargumentsobject" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-createmappedargumentsobject" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-createmappedargumentsobject" + } + ] } } }, @@ -384,7 +458,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-arrow-function-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-arrow-function-definitions" + } + ] }, "trailing_comma": { "__compat": { @@ -547,7 +631,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function-definitions" + } + ] }, "parameters_without_defaults_after_default_parameters": { "__compat": { @@ -710,7 +804,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-method-definitions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-method-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-method-definitions" + } + ] }, "generator_methods_not_constructable": { "__compat": { @@ -960,7 +1068,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function-definitions" + } + ] }, "destructuring": { "__compat": { @@ -1068,7 +1186,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.1.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-method-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-method-definitions" + } + ] }, "computed_property_names": { "__compat": { @@ -1176,7 +1308,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.1.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-method-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-method-definitions" + } + ] }, "computed_property_names": { "__compat": { diff --git a/javascript/grammar.json b/javascript/grammar.json index 972905e051759c..5caf2af945e108 100644 --- a/javascript/grammar.json +++ b/javascript/grammar.json @@ -53,7 +53,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "binary_numeric_literals": { @@ -119,7 +133,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "boolean_literals": { @@ -174,7 +202,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "decimal_numeric_literals": { @@ -229,7 +271,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "hexadecimal_escape_sequences": { @@ -284,7 +340,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "hexadecimal_numeric_literals": { @@ -339,7 +409,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "null_literal": { @@ -394,7 +478,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "octal_numeric_literals": { @@ -449,7 +547,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "regular_expression_literals": { @@ -504,7 +616,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "string_literals": { @@ -559,7 +685,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "unicode_escape_sequences": { @@ -614,7 +754,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "unicode_point_escapes": { @@ -669,7 +823,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-lexical-grammar" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-ecmascript-language-lexical-grammar" + } + ] } }, "shorthand_object_literals": { @@ -778,7 +946,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-template-literals" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-template-literals" + } + ] }, "template_literal_revision": { "__compat": { diff --git a/javascript/operators/arithmetic.json b/javascript/operators/arithmetic.json index 9319171b63e330..48d224c167cbd3 100644 --- a/javascript/operators/arithmetic.json +++ b/javascript/operators/arithmetic.json @@ -54,7 +54,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-postfix-expressions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-postfix-expressions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-postfix-expressions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-additive-operators" + } + ] } }, "decrement": { @@ -109,7 +131,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-postfix-expressions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-postfix-expressions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-postfix-expressions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-additive-operators" + } + ] } }, "division": { @@ -164,7 +208,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-postfix-expressions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-postfix-expressions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-postfix-expressions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-additive-operators" + } + ] } }, "exponentiation": { @@ -230,7 +296,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-postfix-expressions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-postfix-expressions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-postfix-expressions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-additive-operators" + } + ] } }, "increment": { @@ -285,7 +373,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-postfix-expressions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-postfix-expressions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-postfix-expressions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-additive-operators" + } + ] } }, "multiplication": { @@ -340,7 +450,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-postfix-expressions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-postfix-expressions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-postfix-expressions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-additive-operators" + } + ] } }, "remainder": { @@ -395,7 +527,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-postfix-expressions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-postfix-expressions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-postfix-expressions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-additive-operators" + } + ] } }, "subtraction": { @@ -450,7 +604,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-postfix-expressions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-postfix-expressions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-postfix-expressions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-additive-operators" + } + ] } }, "unary_negation": { @@ -505,7 +681,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-postfix-expressions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-postfix-expressions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-postfix-expressions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-additive-operators" + } + ] } }, "unary_plus": { @@ -560,7 +758,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.3" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-postfix-expressions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-postfix-expressions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-postfix-expressions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-additive-operators" + } + ] } } } diff --git a/javascript/operators/assignment.json b/javascript/operators/assignment.json index 6bf6aee9878340..4ceedc71d57395 100644 --- a/javascript/operators/assignment.json +++ b/javascript/operators/assignment.json @@ -54,7 +54,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "bitwise_and": { @@ -109,7 +127,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "bitwise_or": { @@ -164,7 +200,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "bitwise_xor": { @@ -219,7 +273,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "division": { @@ -274,7 +346,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "exponentiation": { @@ -340,7 +430,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "left_shift": { @@ -395,7 +503,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "multiplication": { @@ -450,7 +576,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "remainder": { @@ -505,7 +649,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "right_shift": { @@ -560,7 +722,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "simple": { @@ -615,7 +795,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "subtraction": { @@ -670,7 +868,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } }, "unsigned_right_shift": { @@ -725,7 +941,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-assignment-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-assignment-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.13" + } + ] } } } diff --git a/javascript/operators/async_function_expression.json b/javascript/operators/async_function_expression.json index 60b927faeefb1c..0b6a2b593ca2b7 100644 --- a/javascript/operators/async_function_expression.json +++ b/javascript/operators/async_function_expression.json @@ -64,7 +64,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-async-function-definitions" + }, + { + "name": "ES2018", + "url": "https://www.ecma-international.org/ecma-262/9.0/#sec-async-function-definitions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-async-function-definitions" + } + ] } } } diff --git a/javascript/operators/await.json b/javascript/operators/await.json index acd033483d8451..f4c7b0749d8149 100644 --- a/javascript/operators/await.json +++ b/javascript/operators/await.json @@ -63,7 +63,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-async-function-definitions" + }, + { + "name": "ES2018", + "url": "https://www.ecma-international.org/ecma-262/9.0/#sec-async-function-definitions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-async-function-definitions" + } + ] } } } diff --git a/javascript/operators/bitwise.json b/javascript/operators/bitwise.json index 9647ce5927186f..7882456d24381d 100644 --- a/javascript/operators/bitwise.json +++ b/javascript/operators/bitwise.json @@ -54,7 +54,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-bitwise-shift-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-bitwise-shift-operators" + } + ] } }, "left_shift": { @@ -109,7 +123,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-bitwise-shift-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-bitwise-shift-operators" + } + ] } }, "not": { @@ -164,7 +192,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-bitwise-shift-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-bitwise-shift-operators" + } + ] } }, "or": { @@ -219,7 +261,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-bitwise-shift-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-bitwise-shift-operators" + } + ] } }, "right_shift": { @@ -274,7 +330,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-bitwise-shift-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-bitwise-shift-operators" + } + ] } }, "unsigned_right_shift": { @@ -329,7 +399,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-bitwise-shift-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-bitwise-shift-operators" + } + ] } }, "xor": { @@ -384,7 +468,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-bitwise-shift-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-bitwise-shift-operators" + } + ] } } } diff --git a/javascript/operators/class.json b/javascript/operators/class.json index 6c2f7fceb119bb..53b02240c85dec 100644 --- a/javascript/operators/class.json +++ b/javascript/operators/class.json @@ -63,7 +63,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-class-definitions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-class-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-class-definitions" + } + ] } } } diff --git a/javascript/operators/comma.json b/javascript/operators/comma.json index 80d370e4528aa1..cd62754c3331cf 100644 --- a/javascript/operators/comma.json +++ b/javascript/operators/comma.json @@ -53,7 +53,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-comma-operator" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-comma-operator" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.14" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.14" + } + ] } } } diff --git a/javascript/operators/comparison.json b/javascript/operators/comparison.json index 5465995f2e24bf..328f5be7fbc9d8 100644 --- a/javascript/operators/comparison.json +++ b/javascript/operators/comparison.json @@ -54,7 +54,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-relational-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-relational-operators" + } + ] } }, "inequality": { @@ -109,7 +123,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-relational-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-relational-operators" + } + ] } }, "identity": { @@ -164,7 +192,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-relational-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-relational-operators" + } + ] } }, "non_identity": { @@ -219,7 +261,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-relational-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-relational-operators" + } + ] } }, "greater_than": { @@ -274,7 +330,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-relational-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-relational-operators" + } + ] } }, "greater_than_or_equal": { @@ -329,7 +399,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-relational-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-relational-operators" + } + ] } }, "less_than": { @@ -384,7 +468,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-relational-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-relational-operators" + } + ] } }, "less_than_or_equal": { @@ -439,7 +537,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-relational-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-relational-operators" + } + ] } } } diff --git a/javascript/operators/conditional.json b/javascript/operators/conditional.json index daea4fa2ec088f..2bd20303152c09 100644 --- a/javascript/operators/conditional.json +++ b/javascript/operators/conditional.json @@ -53,7 +53,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-conditional-operator" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-conditional-operator" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.12" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.12" + } + ] } } } diff --git a/javascript/operators/delete.json b/javascript/operators/delete.json index 11af46fcfc151d..973d3e560d7034 100644 --- a/javascript/operators/delete.json +++ b/javascript/operators/delete.json @@ -52,7 +52,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-delete-operator" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-delete-operator" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.4.1" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.4.1" + } + ] }, "temporal_dead_zone": { "__compat": { diff --git a/javascript/operators/destructuring.json b/javascript/operators/destructuring.json index c8d0ca2f23bab1..24d5b9b0538176 100644 --- a/javascript/operators/destructuring.json +++ b/javascript/operators/destructuring.json @@ -55,7 +55,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-destructuring-assignment" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-destructuring-assignment" + } + ] }, "computed_property_names": { "__compat": { diff --git a/javascript/operators/function.json b/javascript/operators/function.json index e4cbdae2b74737..36dfeff5c39110 100644 --- a/javascript/operators/function.json +++ b/javascript/operators/function.json @@ -52,7 +52,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function-definitions" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-13" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-13" + } + ] }, "trailing_comma": { "__compat": { diff --git a/javascript/operators/function_star.json b/javascript/operators/function_star.json index c961cc1c1cb00e..af67393a902701 100644 --- a/javascript/operators/function_star.json +++ b/javascript/operators/function_star.json @@ -53,7 +53,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-generator-function-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-generator-function-definitions" + } + ] }, "trailing_comma": { "__compat": { diff --git a/javascript/operators/grouping.json b/javascript/operators/grouping.json index d1226f06688ea6..301f79725a29ba 100644 --- a/javascript/operators/grouping.json +++ b/javascript/operators/grouping.json @@ -53,7 +53,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-grouping-operator" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-grouping-operator" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.1.6" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.1.4" + } + ] } } } diff --git a/javascript/operators/in.json b/javascript/operators/in.json index 2fc61f75cc103f..b03335540b3565 100644 --- a/javascript/operators/in.json +++ b/javascript/operators/in.json @@ -52,7 +52,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-relational-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-relational-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.8.7" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-11.8.7" + } + ] } } } diff --git a/javascript/operators/instanceof.json b/javascript/operators/instanceof.json index e7353a6594b768..3e0c9bc9cceec8 100644 --- a/javascript/operators/instanceof.json +++ b/javascript/operators/instanceof.json @@ -52,7 +52,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-relational-operators" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-relational-operators" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.8.6" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-11.8.6" + } + ] } } } diff --git a/javascript/operators/logical.json b/javascript/operators/logical.json index 7c2cd520436b6f..bcef5d55d9c688 100644 --- a/javascript/operators/logical.json +++ b/javascript/operators/logical.json @@ -54,7 +54,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-binary-logical-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-binary-logical-operators" + } + ] } }, "or": { @@ -109,7 +123,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-binary-logical-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-binary-logical-operators" + } + ] } }, "not": { @@ -164,7 +192,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-binary-logical-operators" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-binary-logical-operators" + } + ] } } } diff --git a/javascript/operators/new.json b/javascript/operators/new.json index f483766e7cf51b..790f2d0d63199b 100644 --- a/javascript/operators/new.json +++ b/javascript/operators/new.json @@ -52,7 +52,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-new-operator" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-new-operator" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.2.2" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-11.2.2" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.2.2" + } + ] } } } diff --git a/javascript/operators/new_target.json b/javascript/operators/new_target.json index b4552d620bbeb1..eea064f05d4010 100644 --- a/javascript/operators/new_target.json +++ b/javascript/operators/new_target.json @@ -53,7 +53,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-built-in-function-objects" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-built-in-function-objects" + } + ] } } } diff --git a/javascript/operators/object_initializer.json b/javascript/operators/object_initializer.json index 6c1cfb4d0fb9e1..76ba8aa232ee75 100644 --- a/javascript/operators/object_initializer.json +++ b/javascript/operators/object_initializer.json @@ -53,7 +53,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.1.5" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-object-initializer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object-initializer" + } + ] }, "computed_property_names": { "__compat": { diff --git a/javascript/operators/property_accessors.json b/javascript/operators/property_accessors.json index ce2cb0a21031fa..2266468caa7456 100644 --- a/javascript/operators/property_accessors.json +++ b/javascript/operators/property_accessors.json @@ -53,7 +53,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-property-accessors" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-property-accessors" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.2.1" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.2.1" + } + ] } } } diff --git a/javascript/operators/spread.json b/javascript/operators/spread.json index 4431f75a8d8b32..1cad9c8036b4d2 100644 --- a/javascript/operators/spread.json +++ b/javascript/operators/spread.json @@ -65,7 +65,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array-initializer" + }, + { + "name": "ES2018", + "url": "https://www.ecma-international.org/ecma-262/9.0/#sec-object-initializer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array-initializer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object-initializer" + } + ] } }, "spread_in_function_calls": { @@ -131,7 +149,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array-initializer" + }, + { + "name": "ES2018", + "url": "https://www.ecma-international.org/ecma-262/9.0/#sec-object-initializer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array-initializer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object-initializer" + } + ] } }, "spread_in_destructuring": { @@ -251,7 +287,25 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-array-initializer" + }, + { + "name": "ES2018", + "url": "https://www.ecma-international.org/ecma-262/9.0/#sec-object-initializer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-array-initializer" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-object-initializer" + } + ] } } } diff --git a/javascript/operators/super.json b/javascript/operators/super.json index aac24c136ca5da..1d97a56dd5ccc5 100644 --- a/javascript/operators/super.json +++ b/javascript/operators/super.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-super-keyword" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-super-keyword" + } + ] } } } diff --git a/javascript/operators/this.json b/javascript/operators/this.json index 7b4bfa038c5ec8..1e378f6d701329 100644 --- a/javascript/operators/this.json +++ b/javascript/operators/this.json @@ -52,7 +52,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-this-keyword" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-this-keyword" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.1.1" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-11.1.1" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.1.1" + } + ] } } } diff --git a/javascript/operators/typeof.json b/javascript/operators/typeof.json index 82858ffb06c300..942b60f9955b77 100644 --- a/javascript/operators/typeof.json +++ b/javascript/operators/typeof.json @@ -52,7 +52,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-typeof-operator" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-typeof-operator" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.4.3" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-11.4.3" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.4.3" + } + ] } } } diff --git a/javascript/operators/void.json b/javascript/operators/void.json index fa9721dae14d49..5b6f19135e01b0 100644 --- a/javascript/operators/void.json +++ b/javascript/operators/void.json @@ -52,7 +52,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-void-operator" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-void-operator" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-11.4.2" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-11.4.2" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-11.4.2" + } + ] } } } diff --git a/javascript/operators/yield.json b/javascript/operators/yield.json index f90ebd57bba3df..b4556dd5a75e5a 100644 --- a/javascript/operators/yield.json +++ b/javascript/operators/yield.json @@ -65,7 +65,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#prod-YieldExpression" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#prod-YieldExpression" + } + ] }, "IteratorResult": { "__compat": { diff --git a/javascript/operators/yield_star.json b/javascript/operators/yield_star.json index 972d38f3d5db6d..eade5d9603ba96 100644 --- a/javascript/operators/yield_star.json +++ b/javascript/operators/yield_star.json @@ -66,7 +66,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-generator-function-definitions-runtime-semantics-evaluation" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-generator-function-definitions-runtime-semantics-evaluation" + } + ] } } } diff --git a/javascript/statements.json b/javascript/statements.json index d7b7e52ae30817..fa0aac275f6361 100644 --- a/javascript/statements.json +++ b/javascript/statements.json @@ -121,7 +121,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-async-function-definitions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-async-function-definitions" + } + ] } }, "block": { @@ -175,7 +185,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-block" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-block" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.1" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-12.1" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-12.1" + } + ] } }, "break": { @@ -229,7 +261,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.8" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-break-statement" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-break-statement" + } + ] } }, "class": { @@ -283,7 +329,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-class-definitions" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-class-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-class-definitions" + } + ] }, "array_subclassing": { "__compat": { @@ -453,7 +517,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-let-and-const-declarations" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-let-and-const-declarations" + } + ] } }, "continue": { @@ -507,7 +581,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.7" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-continue-statement" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-continue-statement" + } + ] } }, "debugger": { @@ -561,7 +649,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-debugger-statement" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-debugger-statement" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.15" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-7.5.3" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-7.4.3" + } + ] } }, "default": { @@ -617,7 +727,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-switch-statement" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-exports" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-switch-statement" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-exports" + } + ] } }, "export": { @@ -707,7 +835,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-switch-statement" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-exports" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-switch-statement" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-exports" + } + ] } } }, @@ -763,7 +909,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.6.1" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-do-while-statement" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-do-while-statement" + } + ] } }, "empty": { @@ -818,7 +978,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-empty-statement" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-empty-statement" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.3" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-12.3" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-12.3" + } + ] } }, "export": { @@ -907,7 +1089,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-exports" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-exports" + } + ] } }, "for": { @@ -961,7 +1153,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-for-statement" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-for-statement" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.6.3" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-12.6.3" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-12.6.2" + } + ] } }, "for_each_in": { @@ -1073,7 +1287,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-for-in-and-for-of-statements" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-for-in-and-for-of-statements" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.6.4" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-12.6.4" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-12.6.3" + } + ] } }, "for_of": { @@ -1130,7 +1366,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-for-in-and-for-of-statements" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-for-in-and-for-of-statements" + } + ] }, "async_iterators": { "__compat": { @@ -1292,7 +1538,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-function-definitions" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-13" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-13" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-13" + } + ] }, "allow_in_sloppy_mode": { "__compat": { @@ -1466,7 +1734,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-generator-function-definitions" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-generator-function-definitions" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-generator-function-definitions" + } + ] }, "IteratorResult_object": { "__compat": { @@ -1683,7 +1965,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-if-statement" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-if-statement" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.5" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-12.5" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-12.5" + } + ] } }, "import": { @@ -1779,7 +2083,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-imports" + }, + { + "name": "ES2018", + "url": "https://www.ecma-international.org/ecma-262/9.0/#sec-imports" + }, + { + "name": "ES2017", + "url": "https://www.ecma-international.org/ecma-262/8.0/#sec-imports" + }, + { + "name": "ES2016", + "url": "https://www.ecma-international.org/ecma-262/7.0/#sec-imports" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-imports" + } + ] }, "dynamic_import": { "__compat": { @@ -1876,7 +2202,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "HTML WHATWG", + "url": "https://html.spec.whatwg.org/multipage/webappapis.html#hostgetimportmetaproperties" + } + ] } }, "label": { @@ -1930,7 +2262,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.12" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-labelled-statements" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-labelled-statements" + } + ] } }, "let": { @@ -2040,7 +2386,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-let-and-const-declarations" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-let-and-const-declarations" + } + ] } }, "return": { @@ -2094,7 +2450,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.9" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-return-statement" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-return-statement" + } + ] } }, "switch": { @@ -2148,7 +2518,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.11" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-switch-statement" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-switch-statement" + } + ] } }, "throw": { @@ -2202,7 +2586,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.13" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-throw-statement" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-throw-statement" + } + ] } }, "try_catch": { @@ -2257,7 +2655,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.14" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-try-statement" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-try-statement" + } + ] }, "conditional_clauses": { "__compat": { @@ -2421,7 +2833,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.2" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-variable-statement" + }, + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-variable-statement" + } + ] } }, "while": { @@ -2475,7 +2901,29 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "ESDraft", + "url": "https://tc39.github.io/ecma262/#sec-while-statement" + }, + { + "name": "ES6", + "url": "https://www.ecma-international.org/ecma-262/6.0/#sec-while-statement" + }, + { + "name": "ES5.1", + "url": "https://www.ecma-international.org/ecma-262/5.1/#sec-12.6.2" + }, + { + "name": "ES3", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf#sec-12.6.2" + }, + { + "name": "ES1", + "url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf#sec-12.6.1" + } + ] } }, "with": { diff --git a/mathml/elements/maction.json b/mathml/elements/maction.json index 6459c3d431ab23..d9acee6cd42239 100644 --- a/mathml/elements/maction.json +++ b/mathml/elements/maction.json @@ -47,7 +47,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.maction" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.maction" + } + ] }, "actiontype": { "__compat": { diff --git a/mathml/elements/math.json b/mathml/elements/math.json index 4b17d99d09759f..19a218ae76cc83 100644 --- a/mathml/elements/math.json +++ b/mathml/elements/math.json @@ -61,7 +61,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter2.html#interf.toplevel" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter7.html#interf.toplevel" + } + ] }, "dir": { "__compat": { @@ -108,7 +118,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter2.html#interf.toplevel" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter7.html#interf.toplevel" + } + ] } }, "display": { @@ -158,7 +178,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter2.html#interf.toplevel" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter7.html#interf.toplevel" + } + ] } }, "href": { @@ -208,7 +238,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter2.html#interf.toplevel" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter7.html#interf.toplevel" + } + ] } }, "mathbackground": { @@ -258,7 +298,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter2.html#interf.toplevel" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter7.html#interf.toplevel" + } + ] } }, "mathcolor": { @@ -308,7 +358,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter2.html#interf.toplevel" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter7.html#interf.toplevel" + } + ] } }, "mode": { @@ -406,7 +466,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter2.html#interf.toplevel" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter7.html#interf.toplevel" + } + ] } } } diff --git a/mathml/elements/menclose.json b/mathml/elements/menclose.json index 1fa676d81cfbc6..f286950110e636 100644 --- a/mathml/elements/menclose.json +++ b/mathml/elements/menclose.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.menclose" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.menclose" + } + ] }, "notation": { "__compat": { diff --git a/mathml/elements/merror.json b/mathml/elements/merror.json index d347ea19ab5b88..8d072c18b7b349 100644 --- a/mathml/elements/merror.json +++ b/mathml/elements/merror.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.merror" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.merror" + } + ] }, "href": { "__compat": { diff --git a/mathml/elements/mfenced.json b/mathml/elements/mfenced.json index 0819cb537909be..0f89a51a20ff8a 100644 --- a/mathml/elements/mfenced.json +++ b/mathml/elements/mfenced.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mfenced" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mfenced" + } + ] }, "href": { "__compat": { diff --git a/mathml/elements/mfrac.json b/mathml/elements/mfrac.json index c7a5a8848268d2..5d02979f30db68 100644 --- a/mathml/elements/mfrac.json +++ b/mathml/elements/mfrac.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mfrac" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mfrac" + } + ] }, "bevelled": { "__compat": { diff --git a/mathml/elements/mglyph.json b/mathml/elements/mglyph.json index 6755c80cb0db9b..685c1198686a37 100644 --- a/mathml/elements/mglyph.json +++ b/mathml/elements/mglyph.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mglyph" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mglyph" + } + ] } } } diff --git a/mathml/elements/mi.json b/mathml/elements/mi.json index d22b2abec93c38..23f5ec1c0c34d5 100644 --- a/mathml/elements/mi.json +++ b/mathml/elements/mi.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mi" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mi" + } + ] }, "dir": { "__compat": { diff --git a/mathml/elements/mlabeledtr.json b/mathml/elements/mlabeledtr.json index c60d3d53284487..89dbbe8a1a312a 100644 --- a/mathml/elements/mlabeledtr.json +++ b/mathml/elements/mlabeledtr.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mlabeledtr" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mlabeledtr" + } + ] } } } diff --git a/mathml/elements/mmultiscripts.json b/mathml/elements/mmultiscripts.json index 3639e1fa6def04..8c18961947e65c 100644 --- a/mathml/elements/mmultiscripts.json +++ b/mathml/elements/mmultiscripts.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mmultiscripts" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mmultiscripts" + } + ] }, "dir": { "__compat": { diff --git a/mathml/elements/mn.json b/mathml/elements/mn.json index f54e37dd4d010b..484776eb652a83 100644 --- a/mathml/elements/mn.json +++ b/mathml/elements/mn.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mn" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mn" + } + ] }, "dir": { "__compat": { diff --git a/mathml/elements/mo.json b/mathml/elements/mo.json index 2e444700cb5884..efb4251618af36 100644 --- a/mathml/elements/mo.json +++ b/mathml/elements/mo.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mo" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mo" + } + ] }, "accent": { "__compat": { diff --git a/mathml/elements/mover.json b/mathml/elements/mover.json index 56c874d5804104..920c826eca273a 100644 --- a/mathml/elements/mover.json +++ b/mathml/elements/mover.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mover" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mover" + } + ] }, "accent": { "__compat": { diff --git a/mathml/elements/mpadded.json b/mathml/elements/mpadded.json index 3df9f3280a534d..c280e49c897e18 100644 --- a/mathml/elements/mpadded.json +++ b/mathml/elements/mpadded.json @@ -47,7 +47,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mpadded" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mpadded" + } + ] }, "href": { "__compat": { diff --git a/mathml/elements/mphantom.json b/mathml/elements/mphantom.json index a044f7f665c58f..f72d499abd1366 100644 --- a/mathml/elements/mphantom.json +++ b/mathml/elements/mphantom.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mphantom" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mphantom" + } + ] }, "mathbackground": { "__compat": { diff --git a/mathml/elements/mroot.json b/mathml/elements/mroot.json index 49486356d4a2d3..8d92fb9318d07f 100644 --- a/mathml/elements/mroot.json +++ b/mathml/elements/mroot.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mroot" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mroot" + } + ] }, "href": { "__compat": { diff --git a/mathml/elements/mrow.json b/mathml/elements/mrow.json index e874b1944d8af3..d13843236cf3ed 100644 --- a/mathml/elements/mrow.json +++ b/mathml/elements/mrow.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mrow" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mrow" + } + ] }, "dir": { "__compat": { diff --git a/mathml/elements/ms.json b/mathml/elements/ms.json index 9d130721d9b748..2f5142810cf3f9 100644 --- a/mathml/elements/ms.json +++ b/mathml/elements/ms.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.ms" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.ms" + } + ] }, "dir": { "__compat": { diff --git a/mathml/elements/mspace.json b/mathml/elements/mspace.json index bc100af3bdb37a..55bf5c03d3461a 100644 --- a/mathml/elements/mspace.json +++ b/mathml/elements/mspace.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mspace" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mspace" + } + ] }, "linebreak": { "__compat": { diff --git a/mathml/elements/msqrt.json b/mathml/elements/msqrt.json index f7b513aeb5aa53..130ab359a4103c 100644 --- a/mathml/elements/msqrt.json +++ b/mathml/elements/msqrt.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.msqrt" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.msqrt" + } + ] }, "href": { "__compat": { diff --git a/mathml/elements/mstyle.json b/mathml/elements/mstyle.json index 396c389726c47e..5c43aa4bdcbc09 100644 --- a/mathml/elements/mstyle.json +++ b/mathml/elements/mstyle.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mstyle" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mstyle" + } + ] }, "decimalpoint": { "__compat": { @@ -93,7 +103,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mstyle" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mstyle" + } + ] } }, "dir": { @@ -141,7 +161,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mstyle" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mstyle" + } + ] } }, "displaystyle": { @@ -189,7 +219,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mstyle" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mstyle" + } + ] } }, "infixbreakstyle": { @@ -237,7 +277,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mstyle" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mstyle" + } + ] } }, "scriptlevel": { @@ -285,7 +335,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mstyle" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mstyle" + } + ] } }, "scriptminsize": { @@ -333,7 +393,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mstyle" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mstyle" + } + ] } }, "scriptsizemultiplier": { @@ -381,7 +451,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mstyle" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mstyle" + } + ] } } } diff --git a/mathml/elements/msub.json b/mathml/elements/msub.json index 70834042ea8636..5c5aa7eb455a3a 100644 --- a/mathml/elements/msub.json +++ b/mathml/elements/msub.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.msub" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.msub" + } + ] }, "href": { "__compat": { diff --git a/mathml/elements/msubsup.json b/mathml/elements/msubsup.json index c1aac5d958c16a..7938e0b4f70867 100644 --- a/mathml/elements/msubsup.json +++ b/mathml/elements/msubsup.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.msubsup" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.msubsup" + } + ] }, "href": { "__compat": { diff --git a/mathml/elements/msup.json b/mathml/elements/msup.json index 3e7683c490bff0..2579dae70690ad 100644 --- a/mathml/elements/msup.json +++ b/mathml/elements/msup.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.msup" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.msup" + } + ] }, "href": { "__compat": { diff --git a/mathml/elements/mtable.json b/mathml/elements/mtable.json index d6e654f2d1a6a7..d19b00e806431f 100644 --- a/mathml/elements/mtable.json +++ b/mathml/elements/mtable.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mtable" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mtable" + } + ] }, "align": { "__compat": { diff --git a/mathml/elements/mtd.json b/mathml/elements/mtd.json index c73f02eb1ca48a..6b985392340a6c 100644 --- a/mathml/elements/mtd.json +++ b/mathml/elements/mtd.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mtd" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mtd" + } + ] }, "columnalign": { "__compat": { diff --git a/mathml/elements/mtext.json b/mathml/elements/mtext.json index 43a046ac3c0e3a..e9a66ad44d7ad9 100644 --- a/mathml/elements/mtext.json +++ b/mathml/elements/mtext.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mtext" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mtext" + } + ] }, "dir": { "__compat": { diff --git a/mathml/elements/mtr.json b/mathml/elements/mtr.json index 10707e510b7419..713e966398393c 100644 --- a/mathml/elements/mtr.json +++ b/mathml/elements/mtr.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.mtr" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.mtr" + } + ] }, "columnalign": { "__compat": { diff --git a/mathml/elements/munder.json b/mathml/elements/munder.json index 7602667f56b8f3..8fb139a1f9765e 100644 --- a/mathml/elements/munder.json +++ b/mathml/elements/munder.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.munder" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.munder" + } + ] }, "accentunder": { "__compat": { diff --git a/mathml/elements/munderover.json b/mathml/elements/munderover.json index 5d3df428c519d9..157745cd673220 100644 --- a/mathml/elements/munderover.json +++ b/mathml/elements/munderover.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "MathML3", + "url": "https://www.w3.org/TR/MathML3/chapter3.html#presm.munderover" + }, + { + "name": "MathML2", + "url": "https://www.w3.org/TR/MathML2/chapter3.html#presm.munderover" + } + ] }, "accent": { "__compat": { diff --git a/svg/attributes/core.json b/svg/attributes/core.json index d8b86e8bafa2b6..c0a2956b258df7 100644 --- a/svg/attributes/core.json +++ b/svg/attributes/core.json @@ -143,7 +143,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#SVGElementTabindexAttribute" + } + ] } }, "xml_base": { diff --git a/svg/attributes/presentation.json b/svg/attributes/presentation.json index bb9fa34cae3f3f..d5a2fb329cfb43 100644 --- a/svg/attributes/presentation.json +++ b/svg/attributes/presentation.json @@ -143,7 +143,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#clip-property" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/masking.html#ClipProperty" + } + ] } }, "clip-path": { @@ -191,7 +201,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-clip-path" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/masking.html#ClipPathProperty" + } + ] } }, "clip-rule": { @@ -335,7 +355,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#ColorInterpolation" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#ColorInterpolationProperty" + } + ] } }, "color-interpolation-filters": { @@ -767,7 +797,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#FillAttribute" + }, + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#FillProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#FillAttribute" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#FillProperty" + } + ] } }, "fill-opacity": { @@ -815,7 +863,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#FillOpacityProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#FillOpacityProperty" + } + ] } }, "fill-rule": { @@ -863,7 +921,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#FillRuleProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#FillRuleProperty" + } + ] } }, "filter": { @@ -1823,7 +1891,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#the-mask" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/masking.html#MaskProperty" + } + ] } }, "opacity": { @@ -2015,7 +2093,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/interact.html#PointerEventsProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/interact.html#PointerEventsProperty" + } + ] } }, "shape-rendering": { @@ -2303,7 +2391,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#StrokeProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeProperty" + } + ] } }, "stroke-dasharray": { @@ -2351,7 +2449,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#StrokeDasharrayProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeDasharrayProperty" + } + ] } }, "stroke-dashoffset": { @@ -2399,7 +2507,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#StrokeDashoffsetProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeDashoffsetProperty" + } + ] } }, "stroke-linecap": { @@ -2447,7 +2565,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#StrokeLinecapProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeLinecapProperty" + } + ] } }, "stroke-linejoin": { @@ -2495,7 +2623,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#StrokeLinejoinProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeLinejoinProperty" + } + ] } }, "stroke-miterlimit": { @@ -2543,7 +2681,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#StrokeMiterlimitProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeMiterlimitProperty" + } + ] } }, "stroke-opacity": { @@ -2591,7 +2739,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#StrokeOpacityProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeOpacityProperty" + } + ] } }, "stroke-width": { @@ -2639,7 +2797,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#StrokeWidthProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeWidthProperty" + } + ] } }, "text-anchor": { @@ -2879,7 +3047,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Transforms 2", + "url": "https://drafts.csswg.org/css-transforms-2/#svg-transform" + }, + { + "name": "CSS3 Transforms", + "url": "https://drafts.csswg.org/css-transforms/#svg-transform" + }, + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/coords.html#TransformProperty" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/coords.html#TransformAttribute" + } + ] } }, "unicode-bidi": { diff --git a/svg/elements/a.json b/svg/elements/a.json index 70aa0812cabd3c..01dfdc2d66ddb2 100644 --- a/svg/elements/a.json +++ b/svg/elements/a.json @@ -49,7 +49,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Referrer Policy", + "url": "https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-delivery-referrer-attribute" + }, + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/linking.html#Links" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/linking.html#Links" + } + ] }, "download": { "__compat": { diff --git a/svg/elements/animate.json b/svg/elements/animate.json index fd3b7cfbb039a4..1e3b4c229d409a 100644 --- a/svg/elements/animate.json +++ b/svg/elements/animate.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#AnimateElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#AnimateElement" + } + ] }, "attributeName": { "__compat": { diff --git a/svg/elements/animateMotion.json b/svg/elements/animateMotion.json index bf24408b6e70e4..87a5038667573f 100644 --- a/svg/elements/animateMotion.json +++ b/svg/elements/animateMotion.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#AnimateMotionElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#AnimateMotionElement" + } + ] }, "calcMode": { "__compat": { diff --git a/svg/elements/animateTransform.json b/svg/elements/animateTransform.json index 4517ff4b44f650..414d1d3df3f838 100644 --- a/svg/elements/animateTransform.json +++ b/svg/elements/animateTransform.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#AnimateTransformElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#AnimateTransformElement" + } + ] }, "by": { "__compat": { diff --git a/svg/elements/circle.json b/svg/elements/circle.json index 04056af7a375f6..742c4941aa6aec 100644 --- a/svg/elements/circle.json +++ b/svg/elements/circle.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#CircleElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#CircleElement" + } + ] }, "cx": { "__compat": { diff --git a/svg/elements/clippath.json b/svg/elements/clippath.json index 41519146428026..9a8ea1b8d8661a 100644 --- a/svg/elements/clippath.json +++ b/svg/elements/clippath.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#ClipPathElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/masking.html#EstablishingANewClippingPath" + } + ] }, "clipPathUnits": { "__compat": { diff --git a/svg/elements/color-profile.json b/svg/elements/color-profile.json index 5e40a129c36b9a..08baa59b9a51ce 100644 --- a/svg/elements/color-profile.json +++ b/svg/elements/color-profile.json @@ -46,7 +46,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/color.html#ColorProfileElement" + } + ] }, "local": { "__compat": { diff --git a/svg/elements/defs.json b/svg/elements/defs.json index 3d8964b5f00e9e..53344c5f5b0409 100644 --- a/svg/elements/defs.json +++ b/svg/elements/defs.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#Head" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#Head" + } + ] } } } diff --git a/svg/elements/desc.json b/svg/elements/desc.json index a7c9fcf552d791..40a3d891363be0 100644 --- a/svg/elements/desc.json +++ b/svg/elements/desc.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#DescriptionAndTitleElements" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#DescriptionAndTitleElements" + } + ] } } } diff --git a/svg/elements/discard.json b/svg/elements/discard.json index dd31c624d8f965..bca536ef12a29c 100644 --- a/svg/elements/discard.json +++ b/svg/elements/discard.json @@ -46,7 +46,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#DiscardElement" + } + ] }, "begin": { "__compat": { diff --git a/svg/elements/ellipse.json b/svg/elements/ellipse.json index 9c71943d431c43..6c0b4b9f6bfdc6 100644 --- a/svg/elements/ellipse.json +++ b/svg/elements/ellipse.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#EllipseElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#EllipseElement" + } + ] }, "cx": { "__compat": { diff --git a/svg/elements/feBlend.json b/svg/elements/feBlend.json index 10f4d19543b09e..a70f83928f6fa9 100644 --- a/svg/elements/feBlend.json +++ b/svg/elements/feBlend.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feBlendElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feBlendElement" + } + ] }, "in": { "__compat": { diff --git a/svg/elements/feColorMatrix.json b/svg/elements/feColorMatrix.json index d63114a7d108f1..47ef501d5b5128 100644 --- a/svg/elements/feColorMatrix.json +++ b/svg/elements/feColorMatrix.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feColorMatrixElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feColorMatrixElement" + } + ] }, "in": { "__compat": { diff --git a/svg/elements/feComponentTransfer.json b/svg/elements/feComponentTransfer.json index 04d77a8e08c152..c39a6a23d0064d 100644 --- a/svg/elements/feComponentTransfer.json +++ b/svg/elements/feComponentTransfer.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feComponentTransferElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feComponentTransferElement" + } + ] }, "in": { "__compat": { diff --git a/svg/elements/feComposite.json b/svg/elements/feComposite.json index 949c41fbdc9596..8dedf3f3192c01 100644 --- a/svg/elements/feComposite.json +++ b/svg/elements/feComposite.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feCompositeElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feCompositeElement" + } + ] }, "in": { "__compat": { diff --git a/svg/elements/feConvolveMatrix.json b/svg/elements/feConvolveMatrix.json index 0b100438fe6561..b0ff9c4fded78d 100644 --- a/svg/elements/feConvolveMatrix.json +++ b/svg/elements/feConvolveMatrix.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feConvolveMatrixElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feConvolveMatrixElement" + } + ] }, "bias": { "__compat": { diff --git a/svg/elements/feDiffuseLighting.json b/svg/elements/feDiffuseLighting.json index e469e32a95b6a2..2fb2ec91dc4525 100644 --- a/svg/elements/feDiffuseLighting.json +++ b/svg/elements/feDiffuseLighting.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feDiffuseLightingElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feDiffuseLightingElement" + } + ] }, "diffuseConstant": { "__compat": { diff --git a/svg/elements/feDisplacementMap.json b/svg/elements/feDisplacementMap.json index f38aac66855997..63d8c2fdd6ff49 100644 --- a/svg/elements/feDisplacementMap.json +++ b/svg/elements/feDisplacementMap.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feDisplacementMapElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feDisplacementMapElement" + } + ] }, "in": { "__compat": { diff --git a/svg/elements/feDistantLight.json b/svg/elements/feDistantLight.json index ff9487e46f0962..dc67e0ad68b624 100644 --- a/svg/elements/feDistantLight.json +++ b/svg/elements/feDistantLight.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feDistantLightElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feDistantLightElement" + } + ] }, "azimuth": { "__compat": { diff --git a/svg/elements/feDropShadow.json b/svg/elements/feDropShadow.json index b79e74ed304acb..7c5ce3ec9a60b1 100644 --- a/svg/elements/feDropShadow.json +++ b/svg/elements/feDropShadow.json @@ -46,7 +46,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feDropShadow" + } + ] }, "dy": { "__compat": { diff --git a/svg/elements/feFlood.json b/svg/elements/feFlood.json index 148920133b1efd..9185472a733e8c 100644 --- a/svg/elements/feFlood.json +++ b/svg/elements/feFlood.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feFloodElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feFloodElement" + } + ] }, "flood-color": { "__compat": { diff --git a/svg/elements/feFuncA.json b/svg/elements/feFuncA.json index 6cbb8250f4b7d6..4cb4efe7659cb6 100644 --- a/svg/elements/feFuncA.json +++ b/svg/elements/feFuncA.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feFuncAElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feFuncAElement" + } + ] } } } diff --git a/svg/elements/feFuncB.json b/svg/elements/feFuncB.json index b98dbbf8f06b0c..af6404412716e6 100644 --- a/svg/elements/feFuncB.json +++ b/svg/elements/feFuncB.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feFuncBElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feFuncBElement" + } + ] } } } diff --git a/svg/elements/feFuncG.json b/svg/elements/feFuncG.json index f873d64d6a650e..8ab264148cc296 100644 --- a/svg/elements/feFuncG.json +++ b/svg/elements/feFuncG.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feFuncGElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feFuncGElement" + } + ] } } } diff --git a/svg/elements/feFuncR.json b/svg/elements/feFuncR.json index 2501156942eb89..ee1888b3a482a5 100644 --- a/svg/elements/feFuncR.json +++ b/svg/elements/feFuncR.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feFuncRElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feFuncRElement" + } + ] } } } diff --git a/svg/elements/feGaussianBlur.json b/svg/elements/feGaussianBlur.json index 5afd9a366ffa67..db854b6e811eb2 100644 --- a/svg/elements/feGaussianBlur.json +++ b/svg/elements/feGaussianBlur.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feGaussianBlurElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feGaussianBlurElement" + } + ] }, "edgeMode": { "__compat": { diff --git a/svg/elements/feImage.json b/svg/elements/feImage.json index 2555e0ced4b4c8..d6dea74a08a063 100644 --- a/svg/elements/feImage.json +++ b/svg/elements/feImage.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feImageElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feImageElement" + } + ] }, "href": { "__compat": { diff --git a/svg/elements/feMerge.json b/svg/elements/feMerge.json index 46c8a9bd65c9c6..34f4f424530816 100644 --- a/svg/elements/feMerge.json +++ b/svg/elements/feMerge.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feMergeElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feMergeElement" + } + ] } } } diff --git a/svg/elements/feMergeNode.json b/svg/elements/feMergeNode.json index 6c84204c78bc35..428829fdb8a573 100644 --- a/svg/elements/feMergeNode.json +++ b/svg/elements/feMergeNode.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#elementdef-femergenode" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feMergeNodeElement" + } + ] }, "in": { "__compat": { diff --git a/svg/elements/feMorphology.json b/svg/elements/feMorphology.json index d8086cb46687f1..ca78f869ff3614 100644 --- a/svg/elements/feMorphology.json +++ b/svg/elements/feMorphology.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feMorphologyElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feMorphologyElement" + } + ] }, "HTML_elements": { "__compat": { diff --git a/svg/elements/feOffset.json b/svg/elements/feOffset.json index 9c7cc121126093..74c1efa157ed4b 100644 --- a/svg/elements/feOffset.json +++ b/svg/elements/feOffset.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feOffsetElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feOffsetElement" + } + ] }, "dx": { "__compat": { diff --git a/svg/elements/fePointLight.json b/svg/elements/fePointLight.json index b00d57117bdd04..efb96ba7889f6c 100644 --- a/svg/elements/fePointLight.json +++ b/svg/elements/fePointLight.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#fePointLightElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#fePointLightElement" + } + ] }, "x": { "__compat": { diff --git a/svg/elements/feSpecularLighting.json b/svg/elements/feSpecularLighting.json index 30080e0b06f0e6..dbad5b5b4c76b2 100644 --- a/svg/elements/feSpecularLighting.json +++ b/svg/elements/feSpecularLighting.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feSpecularLightingElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feSpecularLightingElement" + } + ] }, "in": { "__compat": { diff --git a/svg/elements/feSpotLight.json b/svg/elements/feSpotLight.json index 56b1cdd84f078a..d032d3bcf14c6a 100644 --- a/svg/elements/feSpotLight.json +++ b/svg/elements/feSpotLight.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feSpotLightElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feSpotLightElement" + } + ] }, "limitingConeAngle": { "__compat": { diff --git a/svg/elements/feTile.json b/svg/elements/feTile.json index bb073c2e6b3302..02f40fc909429f 100644 --- a/svg/elements/feTile.json +++ b/svg/elements/feTile.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feTileElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feTileElement" + } + ] }, "in": { "__compat": { diff --git a/svg/elements/feTurbulence.json b/svg/elements/feTurbulence.json index 5abdd4f191e275..7fef0a5657eee1 100644 --- a/svg/elements/feTurbulence.json +++ b/svg/elements/feTurbulence.json @@ -55,7 +55,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#feTurbulenceElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#feTurbulenceElement" + } + ] }, "baseFrequency": { "__compat": { diff --git a/svg/elements/filter.json b/svg/elements/filter.json index 445ab3c55ed374..77cd6dbdb99b42 100644 --- a/svg/elements/filter.json +++ b/svg/elements/filter.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "Filters 1.0", + "url": "https://drafts.fxtf.org/filter-effects/#FilterElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/filters.html#FilterElement" + } + ] }, "filterRes": { "__compat": { diff --git a/svg/elements/foreignObject.json b/svg/elements/foreignObject.json index 11f1c40999fc4d..784e52dfb42a8d 100644 --- a/svg/elements/foreignObject.json +++ b/svg/elements/foreignObject.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/embedded.html#ForeignObjectElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/extend.html#ForeignObjectElement" + } + ] }, "height": { "__compat": { diff --git a/svg/elements/g.json b/svg/elements/g.json index 8649dcaf315147..f317cebc59ae79 100644 --- a/svg/elements/g.json +++ b/svg/elements/g.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#GElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#Groups" + } + ] } } } diff --git a/svg/elements/hatch.json b/svg/elements/hatch.json index 364926c006b5b6..2acd344a420d4a 100644 --- a/svg/elements/hatch.json +++ b/svg/elements/hatch.json @@ -46,7 +46,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#HatchElement" + } + ] }, "hatchContentUnits": { "__compat": { diff --git a/svg/elements/hatchpath.json b/svg/elements/hatchpath.json index 49a27103cd254c..e112fb2a342b4d 100644 --- a/svg/elements/hatchpath.json +++ b/svg/elements/hatchpath.json @@ -46,7 +46,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#Hatchpaths" + } + ] }, "d": { "__compat": { diff --git a/svg/elements/image.json b/svg/elements/image.json index a391007c649f06..c83d7ad0afeaf1 100644 --- a/svg/elements/image.json +++ b/svg/elements/image.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/embedded.html#ImageElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#ImageElement" + } + ] }, "height": { "__compat": { diff --git a/svg/elements/line.json b/svg/elements/line.json index f83ece67611047..24a0e246aafae1 100644 --- a/svg/elements/line.json +++ b/svg/elements/line.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#LineElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#LineElement" + } + ] }, "x1": { "__compat": { diff --git a/svg/elements/linearGradient.json b/svg/elements/linearGradient.json index 8b5b6daf8003cc..a93ce139fc94a9 100644 --- a/svg/elements/linearGradient.json +++ b/svg/elements/linearGradient.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#LinearGradientElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/pservers.html#LinearGradients" + } + ] }, "gradientTransform": { "__compat": { diff --git a/svg/elements/marker.json b/svg/elements/marker.json index 33e82f0acf4bdf..b389bf4abee3b4 100644 --- a/svg/elements/marker.json +++ b/svg/elements/marker.json @@ -46,7 +46,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Markers", + "url": "https://svgwg.org/specs/markers/#MarkerElement" + }, + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/painting.html#MarkerElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/painting.html#MarkerElement" + } + ] }, "markerHeight": { "__compat": { diff --git a/svg/elements/mask.json b/svg/elements/mask.json index 4f0e20cf107f67..c27a322ef3d196 100644 --- a/svg/elements/mask.json +++ b/svg/elements/mask.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "CSS Masks", + "url": "https://drafts.fxtf.org/css-masking-1/#MaskElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/masking.html#Masking" + } + ] }, "maskUnits": { "__compat": { diff --git a/svg/elements/metadata.json b/svg/elements/metadata.json index 2e27d2f1c56a81..ba9284f79d6c55 100644 --- a/svg/elements/metadata.json +++ b/svg/elements/metadata.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#MetadataElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/metadata.html#MetadataElement" + } + ] } } } diff --git a/svg/elements/mpath.json b/svg/elements/mpath.json index 0ab67fd11f1c28..ac7f3e86997dc1 100644 --- a/svg/elements/mpath.json +++ b/svg/elements/mpath.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#MPathElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#MPathElement" + } + ] }, "xlink_href": { "__compat": { diff --git a/svg/elements/path.json b/svg/elements/path.json index 0aef36e4dfe605..52f105b2812318 100644 --- a/svg/elements/path.json +++ b/svg/elements/path.json @@ -46,7 +46,21 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Paths", + "url": "https://svgwg.org/specs/paths/#PathElement" + }, + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/paths.html#PathElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/paths.html#PathElement" + } + ] }, "d": { "__compat": { diff --git a/svg/elements/pattern.json b/svg/elements/pattern.json index 8f71d1bd679cf0..2843d999ab9d2e 100644 --- a/svg/elements/pattern.json +++ b/svg/elements/pattern.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#Patterns" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/pservers.html#Patterns" + } + ] }, "patternUnits": { "__compat": { diff --git a/svg/elements/polygon.json b/svg/elements/polygon.json index ddb66e1ac66032..9e0fcfaafd7794 100644 --- a/svg/elements/polygon.json +++ b/svg/elements/polygon.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#PolygonElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#PolygonElement" + } + ] }, "points": { "__compat": { diff --git a/svg/elements/polyline.json b/svg/elements/polyline.json index 25060fdf33d35d..cbc64898e507bd 100644 --- a/svg/elements/polyline.json +++ b/svg/elements/polyline.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#PolylineElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#PolylineElement" + } + ] }, "points": { "__compat": { diff --git a/svg/elements/radialGradient.json b/svg/elements/radialGradient.json index 541591024c0f21..f126b44ca7cdcf 100644 --- a/svg/elements/radialGradient.json +++ b/svg/elements/radialGradient.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#RadialGradients" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/pservers.html#RadialGradients" + } + ] }, "cx": { "__compat": { diff --git a/svg/elements/rect.json b/svg/elements/rect.json index b5b852a609fbe3..3a8066fbae345d 100644 --- a/svg/elements/rect.json +++ b/svg/elements/rect.json @@ -49,7 +49,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/shapes.html#RectElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/shapes.html#RectElement" + } + ] }, "height": { "__compat": { diff --git a/svg/elements/script.json b/svg/elements/script.json index 1c1c85f8999569..7a278e229756c0 100644 --- a/svg/elements/script.json +++ b/svg/elements/script.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/interact.html#ScriptElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/script.html#ScriptElement" + } + ] }, "type": { "__compat": { diff --git a/svg/elements/set.json b/svg/elements/set.json index 85189b23b8209a..daa382ae9275a4 100644 --- a/svg/elements/set.json +++ b/svg/elements/set.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG Animations 2", + "url": "https://svgwg.org/specs/animations/#SetElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/animate.html#SetElement" + } + ] }, "to": { "__compat": { diff --git a/svg/elements/solidcolor.json b/svg/elements/solidcolor.json index 4245463544397c..d369548aa0a456 100644 --- a/svg/elements/solidcolor.json +++ b/svg/elements/solidcolor.json @@ -46,7 +46,13 @@ "experimental": true, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#SolidcolorElement" + } + ] } } } diff --git a/svg/elements/stop.json b/svg/elements/stop.json index f53848fa52a406..7c61a9086d35df 100644 --- a/svg/elements/stop.json +++ b/svg/elements/stop.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/pservers.html#GradientStops" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/pservers.html#GradientStops" + } + ] }, "offset": { "__compat": { diff --git a/svg/elements/style.json b/svg/elements/style.json index 841f09685a70e8..957759cab9fb1e 100644 --- a/svg/elements/style.json +++ b/svg/elements/style.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/styling.html#StyleElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/styling.html#StyleElement" + } + ] }, "type": { "__compat": { diff --git a/svg/elements/svg.json b/svg/elements/svg.json index 5d3b930c951882..aea013aeb3f1eb 100644 --- a/svg/elements/svg.json +++ b/svg/elements/svg.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#NewDocument" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#NewDocument" + } + ] }, "baseProfile": { "__compat": { diff --git a/svg/elements/switch.json b/svg/elements/switch.json index fb89b4fa2032f5..5226656ee7ad4e 100644 --- a/svg/elements/switch.json +++ b/svg/elements/switch.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#SwitchElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#SwitchElement" + } + ] }, "allowReorder": { "__compat": { diff --git a/svg/elements/symbol.json b/svg/elements/symbol.json index 7482ea58669bed..b6a1c72b6542e7 100644 --- a/svg/elements/symbol.json +++ b/svg/elements/symbol.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#SymbolElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#SymbolElement" + } + ] }, "preserveAspectRatio": { "__compat": { diff --git a/svg/elements/text.json b/svg/elements/text.json index 26e091810fc3f7..ffc26d4c0c58a2 100644 --- a/svg/elements/text.json +++ b/svg/elements/text.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/text.html#TextElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/text.html#TextElement" + } + ] }, "dx": { "__compat": { diff --git a/svg/elements/textpath.json b/svg/elements/textpath.json index 18be879070e268..df67936d84cd25 100644 --- a/svg/elements/textpath.json +++ b/svg/elements/textpath.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/text.html#TextPathElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/text.html#TextPathElement" + } + ] }, "href": { "__compat": { diff --git a/svg/elements/title.json b/svg/elements/title.json index 38b65508fb7c09..1fcb7721328ee8 100644 --- a/svg/elements/title.json +++ b/svg/elements/title.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#TitleElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#DescriptionAndTitleElements" + } + ] }, "tooltip_display": { "__compat": { diff --git a/svg/elements/tspan.json b/svg/elements/tspan.json index a64e3aa63728a1..5daba6ba61d5cc 100644 --- a/svg/elements/tspan.json +++ b/svg/elements/tspan.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/text.html#TextElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/text.html#TSpanElement" + } + ] }, "dx": { "__compat": { diff --git a/svg/elements/use.json b/svg/elements/use.json index aeee949908715a..6914a73ca9049b 100644 --- a/svg/elements/use.json +++ b/svg/elements/use.json @@ -52,7 +52,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/struct.html#UseElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/struct.html#UseElement" + } + ] }, "external_uri": { "__compat": { diff --git a/svg/elements/view.json b/svg/elements/view.json index 917b6abc08ae7e..19b8141e17aaad 100644 --- a/svg/elements/view.json +++ b/svg/elements/view.json @@ -46,7 +46,17 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "SVG2", + "url": "https://svgwg.org/svg2-draft/linking.html#ViewElement" + }, + { + "name": "SVG1.1", + "url": "https://www.w3.org/TR/SVG11/linking.html#ViewElement" + } + ] }, "preserveAspectRatio": { "__compat": { diff --git a/webdriver/commands/CloseWindow.json b/webdriver/commands/CloseWindow.json index 5025a2a12b3589..39e852f77e5f8c 100644 --- a/webdriver/commands/CloseWindow.json +++ b/webdriver/commands/CloseWindow.json @@ -59,7 +59,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebDriver", + "url": "https://w3c.github.io/webdriver/webdriver-spec.html#dfn-close-window" + } + ] } } } diff --git a/webdriver/commands/GetElementAttribute.json b/webdriver/commands/GetElementAttribute.json index 5b3a48a6a54421..19d18466a1c6be 100644 --- a/webdriver/commands/GetElementAttribute.json +++ b/webdriver/commands/GetElementAttribute.json @@ -59,7 +59,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebDriver", + "url": "https://w3c.github.io/webdriver/webdriver-spec.html#dfn-get-element-attribute" + } + ] } } } diff --git a/webdriver/commands/GetElementProperty.json b/webdriver/commands/GetElementProperty.json index cd64a6308fdbe2..68b4eb6441cfb6 100644 --- a/webdriver/commands/GetElementProperty.json +++ b/webdriver/commands/GetElementProperty.json @@ -59,7 +59,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebDriver", + "url": "https://w3c.github.io/webdriver/webdriver-spec.html#dfn-get-element-attribute" + } + ] } } } diff --git a/webdriver/commands/GetElementTagName.json b/webdriver/commands/GetElementTagName.json index 8967f273552039..4dfbd1a6edf5be 100644 --- a/webdriver/commands/GetElementTagName.json +++ b/webdriver/commands/GetElementTagName.json @@ -59,7 +59,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebDriver", + "url": "https://w3c.github.io/webdriver/webdriver-spec.html#dfn-get-element-tag-name" + } + ] } } } diff --git a/webdriver/commands/GetTimeouts.json b/webdriver/commands/GetTimeouts.json index 43fa659cf6c25c..5c5b40baad55a1 100644 --- a/webdriver/commands/GetTimeouts.json +++ b/webdriver/commands/GetTimeouts.json @@ -59,7 +59,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebDriver", + "url": "https://w3c.github.io/webdriver/webdriver-spec.html#dfn-get-timeouts" + } + ] } } } diff --git a/webdriver/commands/GetWindowHandles.json b/webdriver/commands/GetWindowHandles.json index a852677b02d4ec..95fd2912288362 100644 --- a/webdriver/commands/GetWindowHandles.json +++ b/webdriver/commands/GetWindowHandles.json @@ -59,7 +59,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebDriver", + "url": "https://w3c.github.io/webdriver/webdriver-spec.html#dfn-get-window-handles" + } + ] } } } diff --git a/webdriver/commands/GetWindowRect.json b/webdriver/commands/GetWindowRect.json index 55c514bc9bbe2c..67b11f0cd6263a 100644 --- a/webdriver/commands/GetWindowRect.json +++ b/webdriver/commands/GetWindowRect.json @@ -59,7 +59,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebDriver", + "url": "https://w3c.github.io/webdriver/webdriver-spec.html#dfn-get-window-rect" + } + ] } } } diff --git a/webdriver/commands/SetTimeouts.json b/webdriver/commands/SetTimeouts.json index 888d28d72a51e9..afdb359c97eb22 100644 --- a/webdriver/commands/SetTimeouts.json +++ b/webdriver/commands/SetTimeouts.json @@ -59,7 +59,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebDriver", + "url": "https://w3c.github.io/webdriver/webdriver-spec.html#dfn-set-timeouts" + } + ] } } } diff --git a/webdriver/commands/SetWindowRect.json b/webdriver/commands/SetWindowRect.json index 1dd15325932b32..3e24fac1ab3095 100644 --- a/webdriver/commands/SetWindowRect.json +++ b/webdriver/commands/SetWindowRect.json @@ -59,7 +59,13 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "WebDriver", + "url": "https://w3c.github.io/webdriver/webdriver-spec.html#dfn-set-window-rect" + } + ] } } } diff --git a/xpath/axes/self.json b/xpath/axes/self.json index 3d7ab58b33bc7c..e483cd0b732d47 100644 --- a/xpath/axes/self.json +++ b/xpath/axes/self.json @@ -49,7 +49,25 @@ "experimental": false, "standard_track": true, "deprecated": false - } + }, + "specs": [ + { + "name": "XPath3.1", + "url": "https://www.w3.org/TR/xpath-31/#axes" + }, + { + "name": "XPath3", + "url": "https://www.w3.org/TR/xpath-30/#axes" + }, + { + "name": "XPath2", + "url": "https://www.w3.org/TR/xpath-20/#axes" + }, + { + "name": "XPath1", + "url": "https://www.w3.org/TR/xpath-10/#axes" + } + ] } } }