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 upFigure out how to support returning base DOM interfaces from derived ones #626
Labels
Comments
|
AbstractFoo. |
ChrisParis
pushed a commit
to ChrisParis/servo
that referenced
this issue
Sep 7, 2014
…-validation Fix a bug of the form controls validation test
glennw
pushed a commit
to glennw/servo
that referenced
this issue
Jan 16, 2017
Fix type mismatch in shared shader code This fixes a `Type mismatch, cannot convert from 'ivec2' to 'vec2'` error produced by Servo on Android. Related: servo#13154 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/webrender/626) <!-- Reviewable:end -->
glennw
pushed a commit
to glennw/servo
that referenced
this issue
Jan 16, 2017
Fix a type mismatch in `cs_blur.vs.glsl` Similarly to servo#626. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/webrender/633) <!-- Reviewable:end -->
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Stuff like createEvent in Document returns an Event, which currently translates to
@mut Event, when the concrete type might be@mut MouseEvent. This should be easier when we switch toJSManaged<Event>since we can just say it's whatever type we want, cause it's the same pointer. Until then maybe we just punt.