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 upDon't add a line of RenderBoxes to the display list if it doesn't intersect. #228
Comments
ChrisParis
pushed a commit
to ChrisParis/servo
that referenced
this issue
Sep 7, 2014
webdriver: relocate tests from hg to git and the webplatform tests.
|
I would like to take this. Can you point me to the related file? Thank you. |
|
I believe this is already addressed by the code at http://mxr.mozilla.org/servo/source/components/layout/display_list_builder.rs#702 . @pcwalton, do you agree? |
|
This is done. |
glennw
pushed a commit
to glennw/servo
that referenced
this issue
Jan 16, 2017
Allow core-graphics 0.3
pyfisch
added a commit
to pyfisch/servo
that referenced
this issue
Jan 4, 2018
* servo#228 was done (confirmed by mbrubeck) * servo#2012 fixed TODO item * servo/webrender#28 (zoom does work)
bors-servo
added a commit
that referenced
this issue
Jan 4, 2018
Remove mention of some old issues * #228 was done (confirmed by mbrubeck) * #2012 fixed TODO item * servo/webrender#28 (zoom does work) <!-- Please describe your changes on the following line: --> See #19685 --- <!-- 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 - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- 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/19691) <!-- Reviewable:end -->
bors-servo
added a commit
that referenced
this issue
Jan 5, 2018
Remove mention of some old issues * #228 was done (confirmed by mbrubeck) * #2012 fixed TODO item * servo/webrender#28 (zoom does work) <!-- Please describe your changes on the following line: --> See #19685 --- <!-- 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 - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- 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/19691) <!-- Reviewable:end -->
bors-servo
added a commit
that referenced
this issue
Jan 5, 2018
Remove mention of some old issues * #228 was done (confirmed by mbrubeck) * #2012 fixed TODO item * servo/webrender#28 (zoom does work) <!-- Please describe your changes on the following line: --> See #19685 --- <!-- 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 - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- 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/19691) <!-- Reviewable:end -->
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently we add inline flows all at once, without seeing if only part of the inline flow intersects the region necessary. This should really cut down time spent creating display list/rendering for large inlines.