Skip to content
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

Implement support for equality constraints in media queries #13670

Open
Ms2ger opened this issue Oct 10, 2016 · 4 comments
Open

Implement support for equality constraints in media queries #13670

Ms2ger opened this issue Oct 10, 2016 · 4 comments
Labels
A-content/css Interacting with CSS from web content (parsing, serializing, introspection)

Comments

@Ms2ger
Copy link
Contributor

Ms2ger commented Oct 10, 2016

For example, the width query: https://drafts.csswg.org/mediaqueries/#width. There's a test in tests/wpt/mozilla/tests/css/matchMedia.html (added in #13453) that should pass with that fixed.

Code is in components/style/media_queries.rs.

@Ms2ger Ms2ger added the A-content/css Interacting with CSS from web content (parsing, serializing, introspection) label Oct 10, 2016
@gterzian
Copy link
Member

can I try this one?

@notriddle notriddle added the C-assigned There is someone working on resolving the issue label Oct 25, 2016
@notriddle
Copy link
Contributor

Sure. Feel free to ask any questions here.

@gterzian
Copy link
Member

gterzian commented Nov 6, 2016

Sorry I've been busy with servo/webrender#465 lately, I still plan on picking this one up later down the road however. If someone else has a burning desire to take it one, please let me know in the meantime...

bors-servo pushed a commit that referenced this issue Nov 26, 2016
implement support for the width query

<!-- Please describe your changes on the following line: -->
implement support for the `width` media query

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix ##13670 (github issue number if applicable).

<!-- Either: -->
- [x] There are tests for these changes OR
- [ ] These changes do not require tests because _____

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14192)
<!-- Reviewable:end -->
moz-v2v-gh pushed a commit to mozilla/gecko-dev that referenced this issue Feb 4, 2017
…rzian:support_equality_constraints); r=emilio

<!-- Please describe your changes on the following line: -->
implement support for the `width` media query

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #servo/servo#13670 (github issue number if applicable).

<!-- Either: -->
- [x] There are tests for these changes OR
- [ ] These changes do not require tests because _____

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

Source-Repo: https://github.com/servo/servo
Source-Revision: bcc76f8a58f2ebe3886d16ff3eebbe68e3debf6c
@nox nox removed the C-assigned There is someone working on resolving the issue label Oct 5, 2017
@nox
Copy link
Contributor

nox commented Oct 5, 2017

Media queries for width landed, we should list in this issue which queries remain to implement.

gecko-dev-updater pushed a commit to marco-c/gecko-dev-comments-removed that referenced this issue Oct 1, 2019
…rzian:support_equality_constraints); r=emilio

<!-- Please describe your changes on the following line: -->
implement support for the `width` media query

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #servo/servo#13670 (github issue number if applicable).

<!-- Either: -->
- [x] There are tests for these changes OR
- [ ] These changes do not require tests because _____

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

Source-Repo: https://github.com/servo/servo
Source-Revision: bcc76f8a58f2ebe3886d16ff3eebbe68e3debf6c

UltraBlame original commit: 41fd3e16f183603a64c9d57fb5f0509f26a0d5d1
gecko-dev-updater pushed a commit to marco-c/gecko-dev-wordified-and-comments-removed that referenced this issue Oct 1, 2019
…rzian:support_equality_constraints); r=emilio

<!-- Please describe your changes on the following line: -->
implement support for the `width` media query

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #servo/servo#13670 (github issue number if applicable).

<!-- Either: -->
- [x] There are tests for these changes OR
- [ ] These changes do not require tests because _____

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

Source-Repo: https://github.com/servo/servo
Source-Revision: bcc76f8a58f2ebe3886d16ff3eebbe68e3debf6c

UltraBlame original commit: 41fd3e16f183603a64c9d57fb5f0509f26a0d5d1
gecko-dev-updater pushed a commit to marco-c/gecko-dev-wordified that referenced this issue Oct 1, 2019
…rzian:support_equality_constraints); r=emilio

<!-- Please describe your changes on the following line: -->
implement support for the `width` media query

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #servo/servo#13670 (github issue number if applicable).

<!-- Either: -->
- [x] There are tests for these changes OR
- [ ] These changes do not require tests because _____

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

Source-Repo: https://github.com/servo/servo
Source-Revision: bcc76f8a58f2ebe3886d16ff3eebbe68e3debf6c

UltraBlame original commit: 41fd3e16f183603a64c9d57fb5f0509f26a0d5d1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-content/css Interacting with CSS from web content (parsing, serializing, introspection)
Projects
None yet
Development

No branches or pull requests

4 participants