File tree Expand file tree Collapse file tree 2 files changed +11
-12
lines changed
collector/benchmarks/style-servo Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 1
- diff --git a/components/style/properties/longhand/font.mako.rs b/components/style/properties/longhand/font.mako.rs
2
- index 04d6c69..ce76c97 100644
3
- --- a/components/style/properties/longhand/font.mako.rs
4
- +++ b/components/style/properties/longhand/font.mako.rs
5
- @@ -174,6 +174,7 @@ macro_rules! impl_gecko_keyword_conversions {
6
- }))
7
- }
8
- let first_ident = input.expect_ident()?.clone();
9
- + println!("font-family parsing first ident: {:?}", first_ident);
10
-
11
- // FIXME(bholley): The fast thing to do here would be to look up the
12
- // string (as lowercase) in the static atoms table. We don't have an
1
+ diff --git a/components/style/matching.rs b/components/style/matching.rs
2
+ --- a/components/style/matching.rs
3
+ +++ b/components/style/matching.rs
4
+ @@ -788,6 +788,7 @@ pub trait MatchMethods : TElement {
5
+ // Non-animation restyle hints will be processed in a subsequent
6
+ // normal traversal.
7
+ if replacements.intersects(RestyleHint::for_animations()) {
8
+ + println!("{:?}", context.shared.traversal_flags.for_animation_only());
9
+ debug_assert!(context.shared.traversal_flags.for_animation_only());
13
10
11
+ if replacements.contains(RESTYLE_SMIL) {
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ fn generate_properties() {
63
63
let entry = entry. unwrap ( ) ;
64
64
match entry. path ( ) . extension ( ) . and_then ( |e| e. to_str ( ) ) {
65
65
Some ( "mako" ) | Some ( "rs" ) | Some ( "py" ) | Some ( "zip" ) => {
66
+ println ! ( "cargo:rerun-if-changed={}" , entry. path( ) . display( ) ) ;
66
67
}
67
68
_ => { }
68
69
}
You can’t perform that action at this time.
0 commit comments