forked from web-platform-dx/web-features-explorer
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add views for Chromium, Gecko, WebKit; note how things are sorted
- Loading branch information
Showing
10 changed files
with
83 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Chromium implemented features with missing reference documentation | ||
layout: layout.njk | ||
--- | ||
<h1>{{ title }}</h1> | ||
|
||
<p>Sorted by recently implemented.</p> | ||
|
||
<p>{{chromiumFeatures.length }} features found.</p> | ||
|
||
<ul class="features"> | ||
{% for feature in chromiumFeatures %} | ||
<li> | ||
{% include "feature_short.njk" %} | ||
</li> | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Gecko implemented features with missing reference documentation | ||
layout: layout.njk | ||
--- | ||
<h1>{{ title }}</h1> | ||
|
||
<p>Sorted by recently implemented.</p> | ||
|
||
<p>{{geckoFeatures.length }} features found.</p> | ||
|
||
<ul class="features"> | ||
{% for feature in geckoFeatures %} | ||
<li> | ||
{% include "feature_short.njk" %} | ||
</li> | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: WebKit implemented features with missing reference documentation | ||
layout: layout.njk | ||
--- | ||
<h1>{{ title }}</h1> | ||
|
||
<p>Sorted by recently implemented.</p> | ||
|
||
<p>{{webkitFeatures.length }} features found.</p> | ||
|
||
<ul class="features"> | ||
{% for feature in webkitFeatures %} | ||
<li> | ||
{% include "feature_short.njk" %} | ||
</li> | ||
{% endfor %} | ||
</ul> |