-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
[css-values] Add tests for basic min() / max() support #19819
Conversation
https://drafts.csswg.org/css-values-4/#functional-notations Tests cover the following: - attr() in max() - calc() in max() - max() with 20 arguments - min() with unitless 0
css/css-values/attr-in-max.html
Outdated
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@foolip Just pushed a commit to compact the markup. Thanks!
<link rel="match" href="reference/all-green.html"> | ||
|
||
<style> | ||
html, body { margin: 0px; padding: 0px; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is indented very deeply. It's probably best to replace tabs with spaces so that we're all seeing the same thing, since tabs can be any number of spaces...
I pushed a commit which I think will make the lint on Taskcluster pass. I'm not a good reviewer for the tests themselves. @xfq if you don't get a reaction, you'll need to go poking people for review directly. @astearns FYI that reviews aren't working very well, although that's true of almost all of wpt, not just the css directory. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The tests look good to me, and the failures are showing interesting bugs.
Resubmitted from #19801. Original description: