-
Notifications
You must be signed in to change notification settings - Fork 20
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
clarify incomplete params #46
Comments
I suspect that there's no debate on 1). Examples 2) and 3) could be considered discrepant. If we convert the empty string of the first Consistency options: |
Seems to me that A) is the more consistent option, and it's also what would naturally fall out of HTML's parsing rules. IMO, we should clarify the spec language around that, and change implementations and tests accordingly. |
I think A) is better, since it would make the code a bit easier. |
fixed with: #47 |
The spec currently reads:
I think we need to clarify three scenarios, where a param name is supplied with no valid param value
metric;dur=123.4;dur=567.8
yields a duration of 123.4 in chromemetric;dur=foo;dur=567.8
yields a duration of 0 in chromemetric;dur;dur=123.4
yields a duration of 123.4 in chromeThe text was updated successfully, but these errors were encountered: