Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upSupport other values of pointer-events #16397
Closed
Comments
|
cc @emilio |
|
The spec doesn't seem to say whether these values are supposed to be case-sensitive or not. |
|
If they are not, we can just do: extra_gecko_values="visiblepainted visiblefill visiblestroke visible painted fill stroke" |
|
Yeah, we can just do that. Although it would be better if we can serialize those values to the canonical form defined in the spec, but it seems Gecko is already serializing them to lowercase form, so it is probably fine to do this for now. We may want to fix that eventually, but that's definitely not a priority. |
bors-servo
added a commit
that referenced
this issue
Apr 18, 2017
Add extra pointer-events values for Gecko (fixes #16397) <!-- 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/16514) <!-- Reviewable:end -->
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are several other values we need to support for
pointer-eventsin stylo, which are:visiblePainted visibleFill visibleStroke visible painted fill stroke.Simply adding
seems to hit an assertion
which may need some investigation.