From a12fd2846834c96aaf034aca4c749f9e217af1a9 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Wed, 4 Feb 2015 10:50:43 +0100 Subject: [PATCH] browser: recognise 'ls' feature status WHATWG Living Standard is developed in parallel to W3C, and should be considered stable. In fact, no 'ls' feature requires a browser prefix, while some 'cr' do. Meanwhile 'other' status is defined outside the realm of HTML but that doesn't imply anything about stability so make it undefined .l0. --- browser.plp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/browser.plp b/browser.plp index 322fa36..e65395e 100644 --- a/browser.plp +++ b/browser.plp @@ -63,12 +63,13 @@ my %DSTATS = ( ); my %CSTATUS = ( unoff => 'l1', # unofficial - wd => 'l3', # draft - cr => 'l4', # candidate - pr => 'l4', # proposed + wd => 'l2', # draft + cr => 'l3', # candidate + pr => 'l3', # proposed rec => 'l5', # recommendation - other => 'l2', # non-w3 - ietf => 'l5', # standard + ls => 'l4', # whatwg + ietf => 'l0', # standard + other => 'l0', # non-w3 ); my %versions; if (my ($somerow) = values %{ $caniuse->{data} }) { -- 2.30.0