mirror of
https://github.com/servo/servo.git
synced 2025-06-19 06:38:59 +01:00
Pass the gradient compatibility mode to gecko
This commit is contained in:
parent
ea4e7299d4
commit
dd38bba1be
1 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ use gecko_bindings::sugar::ns_style_coord::{CoordDataValue, CoordDataMut};
|
||||||
use stylesheets::{Origin, RulesMutateError};
|
use stylesheets::{Origin, RulesMutateError};
|
||||||
use values::computed::{Angle, CalcLengthOrPercentage, Gradient, Image};
|
use values::computed::{Angle, CalcLengthOrPercentage, Gradient, Image};
|
||||||
use values::computed::{LengthOrPercentage, LengthOrPercentageOrAuto};
|
use values::computed::{LengthOrPercentage, LengthOrPercentageOrAuto};
|
||||||
use values::generics::image::{GradientItem, Image as GenericImage};
|
use values::generics::image::{CompatMode, Image as GenericImage, GradientItem};
|
||||||
|
|
||||||
impl From<CalcLengthOrPercentage> for nsStyleCoord_CalcValue {
|
impl From<CalcLengthOrPercentage> for nsStyleCoord_CalcValue {
|
||||||
fn from(other: CalcLengthOrPercentage) -> nsStyleCoord_CalcValue {
|
fn from(other: CalcLengthOrPercentage) -> nsStyleCoord_CalcValue {
|
||||||
|
@ -208,7 +208,7 @@ impl nsStyleImage {
|
||||||
Gecko_CreateGradient(NS_STYLE_GRADIENT_SHAPE_LINEAR as u8,
|
Gecko_CreateGradient(NS_STYLE_GRADIENT_SHAPE_LINEAR as u8,
|
||||||
NS_STYLE_GRADIENT_SIZE_FARTHEST_CORNER as u8,
|
NS_STYLE_GRADIENT_SIZE_FARTHEST_CORNER as u8,
|
||||||
gradient.repeating,
|
gradient.repeating,
|
||||||
/* legacy_syntax = */ false,
|
gradient.compat_mode == CompatMode::WebKit,
|
||||||
stop_count as u32)
|
stop_count as u32)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -277,7 +277,7 @@ impl nsStyleImage {
|
||||||
Gecko_CreateGradient(gecko_shape,
|
Gecko_CreateGradient(gecko_shape,
|
||||||
gecko_size,
|
gecko_size,
|
||||||
gradient.repeating,
|
gradient.repeating,
|
||||||
/* legacy_syntax = */ false,
|
gradient.compat_mode == CompatMode::WebKit,
|
||||||
stop_count as u32)
|
stop_count as u32)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue