browser: recognise 'ls' feature status
authorMischa POSLAWSKY <perl@shiar.org>
Wed, 4 Feb 2015 09:50:43 +0000 (10:50 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Thu, 5 Feb 2015 21:46:21 +0000 (22:46 +0100)
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

index 322fa36d42d31b206302b1070c5a7a79e37bf3cd..e65395ea1cba69b0c20a047ade609b17756be26e 100644 (file)
@@ -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} }) {