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 upRender `background-image: url(…)` #25512
Merged
Conversation
|
r? @nox |
bors-servo
added a commit
that referenced
this pull request
Jan 13, 2020
Render `background-image: url(…)` … and support most `background-*` properties. Still to do: * `background-attachment` * Gradients
|
|
|
Nice comments all around. |
| @@ -553,13 +563,15 @@ impl LayoutThread { | |||
| fn build_layout_context<'a>( | |||
| &'a self, | |||
| guards: StylesheetGuards<'a>, | |||
| script_initiated_layout: bool, | |||
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
| dump_display_list: bool, | ||
| dump_display_list_json: bool, | ||
| dump_style_tree: bool, | ||
| dump_rule_tree: bool, |
This comment has been minimized.
This comment has been minimized.
nox
Jan 14, 2020
Member
Such an unethical method.
This comment has been minimized.
This comment has been minimized.
components/layout_2020/Cargo.toml
Outdated
| @@ -25,6 +25,7 @@ ipc-channel = "0.12" | |||
| libc = "0.2" | |||
| msg = {path = "../msg"} | |||
| net_traits = {path = "../net_traits"} | |||
| once_cell = "1.2.0" | |||
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
| @@ -426,7 +426,7 @@ impl<'a> BuilderForBoxFragment<'a> { | |||
| clipping_area_origin: f32, | |||
| clipping_area_size: f32, | |||
| positioning_area_size: f32, | |||
| ) -> (f32, f32) { | |||
| ) -> (bool, f32, f32) { | |||
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
@bors-servo r=nox |
|
|
bors-servo
added a commit
that referenced
this pull request
Jan 17, 2020
Render `background-image: url(…)` … and support most `background-*` properties. Still to do: * `background-attachment` * Gradients
|
|
|
@bors-servo retry #25523 ?
|
bors-servo
added a commit
that referenced
this pull request
Jan 17, 2020
Render `background-image: url(…)` … and support most `background-*` properties. Still to do: * `background-attachment` * Gradients
|
|
|
@bors-servo retry #24622 |
bors-servo
added a commit
that referenced
this pull request
Jan 17, 2020
Render `background-image: url(…)` … and support most `background-*` properties. Still to do: * `background-attachment` * Gradients
|
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
SimonSapin commentedJan 13, 2020
… and support most
background-*properties.Still to do:
background-attachment