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 upMove body of ScriptTask::handle_mouse_move_event into a method on Document #4984
Labels
Comments
JIoJIaJIu
added a commit
to JIoJIaJIu/servo
that referenced
this issue
Feb 23, 2015
Document servo#4984
JIoJIaJIu
added a commit
to JIoJIaJIu/servo
that referenced
this issue
Feb 23, 2015
Document servo#4984
JIoJIaJIu
added a commit
to JIoJIaJIu/servo
that referenced
this issue
Feb 23, 2015
Document servo#4984
|
This issue seems to be resolved. Please close. |
|
Fixed by #4984 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Most of this method has nothing to do with the script task, and everything to do with the document that is the target of the event. The one tricky bit is the list of mouse over targets that lives in ScriptTask; we'll probably want to pass a
RefMut<Option<Vec<JS<Node>>>>argument to the new method.