-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ignore caniuse links that point to w3.org #14
Comments
diff --git a/src/wattsi.pas b/src/wattsi.pas
index 533ed11..72e0470 100644
--- a/src/wattsi.pas
+++ b/src/wattsi.pas
@@ -2018,6 +2018,8 @@ begin
else
Feature.Reset();
Feature.CanIUseCode := FeatureCode;
+ if (Pos('https://html.spec.whatwg.org/', SpecURL) <> 1) then
+ Writeln('Caniuse non-whatwg link: ', SpecURL, ' ', FeatureCode);
for BrowserIndex in TBrowserIndex do
begin
Feature.FirstGoodVersion[BrowserIndex].Version := ''; ->
Should probably keep this if (SpecURL = 'http://www.w3.org/TR/MathML/') then
begin
ID := 'mathml';
end However |
This was referenced Jan 25, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See Fyrd/caniuse#2232
We should ignore anything but https://html.spec.whatwg.org/ and make sure caniuse links to that where appropriate, if it doesn't already.
The text was updated successfully, but these errors were encountered: