mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
Auto merge of #25423 - servo:border-radius, r=nox
Add support for border-radius Fixes https://github.com/servo/servo/issues/25040
This commit is contained in:
commit
0b54c81dea
3 changed files with 101 additions and 48 deletions
|
@ -5,15 +5,21 @@
|
||||||
use crate::fragments::{BoxFragment, Fragment};
|
use crate::fragments::{BoxFragment, Fragment};
|
||||||
use crate::geom::physical::{Rect, Vec2};
|
use crate::geom::physical::{Rect, Vec2};
|
||||||
use embedder_traits::Cursor;
|
use embedder_traits::Cursor;
|
||||||
use euclid::{Point2D, SideOffsets2D};
|
use euclid::{Point2D, SideOffsets2D, Size2D};
|
||||||
use gfx::text::glyph::GlyphStore;
|
use gfx::text::glyph::GlyphStore;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
use style::dom::OpaqueNode;
|
||||||
use style::properties::ComputedValues;
|
use style::properties::ComputedValues;
|
||||||
use style::values::computed::{BorderStyle, Length};
|
use style::values::computed::{BorderStyle, Length, LengthPercentage};
|
||||||
use webrender_api::{self as wr, units, CommonItemProperties, PrimitiveFlags};
|
use style::values::specified::ui::CursorKind;
|
||||||
|
use webrender_api::{self as wr, units};
|
||||||
|
|
||||||
|
// `webrender_api::display_item::ItemTag` is private
|
||||||
|
type ItemTag = (u64, u16);
|
||||||
|
type HitInfo = Option<ItemTag>;
|
||||||
|
|
||||||
pub struct DisplayListBuilder {
|
pub struct DisplayListBuilder {
|
||||||
pipeline_id: wr::PipelineId,
|
current_space_and_clip: wr::SpaceAndClipInfo,
|
||||||
pub wr: wr::DisplayListBuilder,
|
pub wr: wr::DisplayListBuilder,
|
||||||
pub is_contentful: bool,
|
pub is_contentful: bool,
|
||||||
}
|
}
|
||||||
|
@ -21,11 +27,33 @@ pub struct DisplayListBuilder {
|
||||||
impl DisplayListBuilder {
|
impl DisplayListBuilder {
|
||||||
pub fn new(pipeline_id: wr::PipelineId, viewport_size: wr::units::LayoutSize) -> Self {
|
pub fn new(pipeline_id: wr::PipelineId, viewport_size: wr::units::LayoutSize) -> Self {
|
||||||
Self {
|
Self {
|
||||||
pipeline_id,
|
current_space_and_clip: wr::SpaceAndClipInfo::root_scroll(pipeline_id),
|
||||||
is_contentful: false,
|
is_contentful: false,
|
||||||
wr: wr::DisplayListBuilder::new(pipeline_id, viewport_size),
|
wr: wr::DisplayListBuilder::new(pipeline_id, viewport_size),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn common_properties(
|
||||||
|
&self,
|
||||||
|
clip_rect: units::LayoutRect,
|
||||||
|
hit_info: HitInfo,
|
||||||
|
) -> wr::CommonItemProperties {
|
||||||
|
wr::CommonItemProperties {
|
||||||
|
clip_rect,
|
||||||
|
clip_id: self.current_space_and_clip.clip_id,
|
||||||
|
spatial_id: self.current_space_and_clip.spatial_id,
|
||||||
|
hit_info,
|
||||||
|
// TODO(gw): Make use of the WR backface visibility functionality.
|
||||||
|
flags: wr::PrimitiveFlags::default(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn clipping_and_scrolling_scope<R>(&mut self, f: impl FnOnce(&mut Self) -> R) -> R {
|
||||||
|
let previous = self.current_space_and_clip;
|
||||||
|
let result = f(self);
|
||||||
|
self.current_space_and_clip = previous;
|
||||||
|
result
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Contentful paint, for the purpose of
|
/// Contentful paint, for the purpose of
|
||||||
|
@ -60,19 +88,12 @@ impl Fragment {
|
||||||
.translate(&containing_block.top_left);
|
.translate(&containing_block.top_left);
|
||||||
let mut baseline_origin = rect.top_left.clone();
|
let mut baseline_origin = rect.top_left.clone();
|
||||||
baseline_origin.y += t.ascent;
|
baseline_origin.y += t.ascent;
|
||||||
let cursor = cursor(&t.parent_style, Cursor::Text);
|
|
||||||
let common = CommonItemProperties {
|
|
||||||
clip_rect: rect.clone().into(),
|
|
||||||
clip_id: wr::ClipId::root(builder.pipeline_id),
|
|
||||||
spatial_id: wr::SpatialId::root_scroll_node(builder.pipeline_id),
|
|
||||||
hit_info: cursor.map(|cursor| (t.tag.0 as u64, cursor as u16)),
|
|
||||||
// TODO(gw): Make use of the WR backface visibility functionality.
|
|
||||||
flags: PrimitiveFlags::default(),
|
|
||||||
};
|
|
||||||
let glyphs = glyphs(&t.glyphs, baseline_origin);
|
let glyphs = glyphs(&t.glyphs, baseline_origin);
|
||||||
if glyphs.is_empty() {
|
if glyphs.is_empty() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
let hit_info = hit_info(&t.parent_style, t.tag, Cursor::Text);
|
||||||
|
let common = builder.common_properties(rect.clone().into(), hit_info);
|
||||||
let color = t.parent_style.clone_color();
|
let color = t.parent_style.clone_color();
|
||||||
builder
|
builder
|
||||||
.wr
|
.wr
|
||||||
|
@ -85,14 +106,8 @@ impl Fragment {
|
||||||
.rect
|
.rect
|
||||||
.to_physical(i.style.writing_mode, containing_block)
|
.to_physical(i.style.writing_mode, containing_block)
|
||||||
.translate(&containing_block.top_left);
|
.translate(&containing_block.top_left);
|
||||||
let common = CommonItemProperties {
|
let hit_info = None;
|
||||||
clip_rect: rect.clone().into(),
|
let common = builder.common_properties(rect.clone().into(), hit_info);
|
||||||
clip_id: wr::ClipId::root(builder.pipeline_id),
|
|
||||||
spatial_id: wr::SpatialId::root_scroll_node(builder.pipeline_id),
|
|
||||||
hit_info: None,
|
|
||||||
// TODO(gw): Make use of the WR backface visibility functionality.
|
|
||||||
flags: PrimitiveFlags::default(),
|
|
||||||
};
|
|
||||||
builder.wr.push_image(
|
builder.wr.push_image(
|
||||||
&common,
|
&common,
|
||||||
rect.into(),
|
rect.into(),
|
||||||
|
@ -122,18 +137,11 @@ impl BoxFragment {
|
||||||
.to_physical(self.style.writing_mode, containing_block)
|
.to_physical(self.style.writing_mode, containing_block)
|
||||||
.translate(&containing_block.top_left)
|
.translate(&containing_block.top_left)
|
||||||
.into();
|
.into();
|
||||||
let cursor = cursor(&self.style, Cursor::Default);
|
let hit_info = hit_info(&self.style, self.tag, Cursor::Default);
|
||||||
let common = CommonItemProperties {
|
let border_radius = self.border_radius(&border_rect);
|
||||||
clip_rect: border_rect,
|
|
||||||
clip_id: wr::ClipId::root(builder.pipeline_id),
|
|
||||||
spatial_id: wr::SpatialId::root_scroll_node(builder.pipeline_id),
|
|
||||||
hit_info: cursor.map(|cursor| (self.tag.0 as u64, cursor as u16)),
|
|
||||||
// TODO(gw): Make use of the WR backface visibility functionality.
|
|
||||||
flags: PrimitiveFlags::default(),
|
|
||||||
};
|
|
||||||
|
|
||||||
self.background_display_items(builder, &common);
|
self.background_display_items(builder, hit_info, border_rect, &border_radius);
|
||||||
self.border_display_items(builder, &common, border_rect);
|
self.border_display_items(builder, hit_info, border_rect, border_radius);
|
||||||
let content_rect = self
|
let content_rect = self
|
||||||
.content_rect
|
.content_rect
|
||||||
.to_physical(self.style.writing_mode, containing_block)
|
.to_physical(self.style.writing_mode, containing_block)
|
||||||
|
@ -143,24 +151,61 @@ impl BoxFragment {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn border_radius(&self, border_rect: &units::LayoutRect) -> wr::BorderRadius {
|
||||||
|
let resolve = |radius: &LengthPercentage, box_size: f32| {
|
||||||
|
radius.percentage_relative_to(Length::new(box_size)).px()
|
||||||
|
};
|
||||||
|
let corner = |corner: &style::values::computed::BorderCornerRadius| {
|
||||||
|
Size2D::new(
|
||||||
|
resolve(&corner.0.width.0, border_rect.size.width),
|
||||||
|
resolve(&corner.0.height.0, border_rect.size.height),
|
||||||
|
)
|
||||||
|
};
|
||||||
|
let b = self.style.get_border();
|
||||||
|
wr::BorderRadius {
|
||||||
|
top_left: corner(&b.border_top_left_radius),
|
||||||
|
top_right: corner(&b.border_top_right_radius),
|
||||||
|
bottom_right: corner(&b.border_bottom_right_radius),
|
||||||
|
bottom_left: corner(&b.border_bottom_left_radius),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn background_display_items(
|
fn background_display_items(
|
||||||
&self,
|
&self,
|
||||||
builder: &mut DisplayListBuilder,
|
builder: &mut DisplayListBuilder,
|
||||||
common: &CommonItemProperties,
|
hit_info: HitInfo,
|
||||||
|
border_rect: units::LayoutRect,
|
||||||
|
border_radius: &wr::BorderRadius,
|
||||||
) {
|
) {
|
||||||
let background_color = self
|
let background_color = self
|
||||||
.style
|
.style
|
||||||
.resolve_color(self.style.clone_background_color());
|
.resolve_color(self.style.clone_background_color());
|
||||||
if background_color.alpha > 0 || common.hit_info.is_some() {
|
if background_color.alpha > 0 || hit_info.is_some() {
|
||||||
builder.wr.push_rect(common, rgba(background_color))
|
builder.clipping_and_scrolling_scope(|builder| {
|
||||||
|
if !border_radius.is_zero() {
|
||||||
|
builder.current_space_and_clip.clip_id = builder.wr.define_clip(
|
||||||
|
&builder.current_space_and_clip,
|
||||||
|
border_rect,
|
||||||
|
Some(wr::ComplexClipRegion {
|
||||||
|
rect: border_rect,
|
||||||
|
radii: *border_radius,
|
||||||
|
mode: wr::ClipMode::Clip,
|
||||||
|
}),
|
||||||
|
None,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
let common = builder.common_properties(border_rect, hit_info);
|
||||||
|
builder.wr.push_rect(&common, rgba(background_color))
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn border_display_items(
|
fn border_display_items(
|
||||||
&self,
|
&self,
|
||||||
builder: &mut DisplayListBuilder,
|
builder: &mut DisplayListBuilder,
|
||||||
common: &CommonItemProperties,
|
hit_info: HitInfo,
|
||||||
border_rect: units::LayoutRect,
|
border_rect: units::LayoutRect,
|
||||||
|
radius: wr::BorderRadius,
|
||||||
) {
|
) {
|
||||||
let b = self.style.get_border();
|
let b = self.style.get_border();
|
||||||
let widths = SideOffsets2D::new(
|
let widths = SideOffsets2D::new(
|
||||||
|
@ -187,15 +232,18 @@ impl BoxFragment {
|
||||||
BorderStyle::Outset => wr::BorderStyle::Outset,
|
BorderStyle::Outset => wr::BorderStyle::Outset,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
let common = builder.common_properties(border_rect, hit_info);
|
||||||
let details = wr::BorderDetails::Normal(wr::NormalBorder {
|
let details = wr::BorderDetails::Normal(wr::NormalBorder {
|
||||||
top: side(b.border_top_style, b.border_top_color),
|
top: side(b.border_top_style, b.border_top_color),
|
||||||
right: side(b.border_right_style, b.border_right_color),
|
right: side(b.border_right_style, b.border_right_color),
|
||||||
bottom: side(b.border_bottom_style, b.border_bottom_color),
|
bottom: side(b.border_bottom_style, b.border_bottom_color),
|
||||||
left: side(b.border_left_style, b.border_left_color),
|
left: side(b.border_left_style, b.border_left_color),
|
||||||
radius: wr::BorderRadius::zero(),
|
radius,
|
||||||
do_aa: true,
|
do_aa: true,
|
||||||
});
|
});
|
||||||
builder.wr.push_border(common, border_rect, widths, details)
|
builder
|
||||||
|
.wr
|
||||||
|
.push_border(&common, border_rect, widths, details)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -233,16 +281,21 @@ fn glyphs(glyph_runs: &[Arc<GlyphStore>], mut origin: Vec2<Length>) -> Vec<wr::G
|
||||||
glyphs
|
glyphs
|
||||||
}
|
}
|
||||||
|
|
||||||
fn cursor(values: &ComputedValues, default: Cursor) -> Option<Cursor> {
|
fn hit_info(style: &ComputedValues, tag: OpaqueNode, auto_cursor: Cursor) -> HitInfo {
|
||||||
use style::computed_values::pointer_events::T as PointerEvents;
|
use style::computed_values::pointer_events::T as PointerEvents;
|
||||||
use style::values::specified::ui::CursorKind;
|
|
||||||
|
|
||||||
let inherited_ui = values.get_inherited_ui();
|
let inherited_ui = style.get_inherited_ui();
|
||||||
if inherited_ui.pointer_events == PointerEvents::None {
|
if inherited_ui.pointer_events == PointerEvents::None {
|
||||||
return None;
|
None
|
||||||
|
} else {
|
||||||
|
let cursor = cursor(inherited_ui.cursor.keyword, auto_cursor);
|
||||||
|
Some((tag.0 as u64, cursor as u16))
|
||||||
}
|
}
|
||||||
Some(match inherited_ui.cursor.keyword {
|
}
|
||||||
CursorKind::Auto => default,
|
|
||||||
|
fn cursor(kind: CursorKind, auto_cursor: Cursor) -> Cursor {
|
||||||
|
match kind {
|
||||||
|
CursorKind::Auto => auto_cursor,
|
||||||
CursorKind::None => Cursor::None,
|
CursorKind::None => Cursor::None,
|
||||||
CursorKind::Default => Cursor::Default,
|
CursorKind::Default => Cursor::Default,
|
||||||
CursorKind::Pointer => Cursor::Pointer,
|
CursorKind::Pointer => Cursor::Pointer,
|
||||||
|
@ -278,5 +331,5 @@ fn cursor(values: &ComputedValues, default: Cursor) -> Option<Cursor> {
|
||||||
CursorKind::AllScroll => Cursor::AllScroll,
|
CursorKind::AllScroll => Cursor::AllScroll,
|
||||||
CursorKind::ZoomIn => Cursor::ZoomIn,
|
CursorKind::ZoomIn => Cursor::ZoomIn,
|
||||||
CursorKind::ZoomOut => Cursor::ZoomOut,
|
CursorKind::ZoomOut => Cursor::ZoomOut,
|
||||||
})
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
"BorderCornerRadius",
|
"BorderCornerRadius",
|
||||||
"computed::BorderCornerRadius::zero()",
|
"computed::BorderCornerRadius::zero()",
|
||||||
"parse",
|
"parse",
|
||||||
engines="gecko servo-2013",
|
engines="gecko servo-2013 servo-2020",
|
||||||
extra_prefixes=prefixes,
|
extra_prefixes=prefixes,
|
||||||
spec=maybe_logical_spec(corner, "radius"),
|
spec=maybe_logical_spec(corner, "radius"),
|
||||||
boxed=True,
|
boxed=True,
|
||||||
|
|
|
@ -239,7 +239,7 @@ pub fn parse_border<'i, 't>(
|
||||||
|
|
||||||
<%helpers:shorthand
|
<%helpers:shorthand
|
||||||
name="border-radius"
|
name="border-radius"
|
||||||
engines="gecko servo-2013"
|
engines="gecko servo-2013 servo-2020"
|
||||||
sub_properties="${' '.join(
|
sub_properties="${' '.join(
|
||||||
'border-%s-radius' % (corner)
|
'border-%s-radius' % (corner)
|
||||||
for corner in ['top-left', 'top-right', 'bottom-right', 'bottom-left']
|
for corner in ['top-left', 'top-right', 'bottom-right', 'bottom-left']
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue