Closed
Bug 1345697
Opened 8 years ago
Closed 8 years ago
stylo: Implement access to CSSKeyframesRule and CSSKeyframeRule
Categories
(Core :: CSS Parsing and Computation, enhancement, P2)
Core
CSS Parsing and Computation
Tracking
()
RESOLVED
FIXED
mozilla55
Tracking | Status | |
---|---|---|
firefox55 | --- | fixed |
People
(Reporter: xidorn, Assigned: xidorn)
References
Details
Attachments
(5 files, 2 obsolete files)
(deleted),
text/x-review-board-request
|
heycam
:
review+
|
Details |
(deleted),
text/x-review-board-request
|
heycam
:
review+
|
Details |
(deleted),
text/x-review-board-request
|
heycam
:
review+
|
Details |
(deleted),
text/x-review-board-request
|
heycam
:
review+
|
Details |
(deleted),
text/x-review-board-request
|
heycam
:
review+
|
Details |
No description provided.
Updated•8 years ago
|
Priority: -- → P2
Assignee | ||
Updated•8 years ago
|
Blocks: stylo-style-mochitest
Comment 1•8 years ago
|
||
There are two issue (bug 1337678 and bug 1337680) on current gecko that we should fix for stylo as well (or only fix for stylo?).
URL: 1337678, 1337680
Updated•8 years ago
|
URL: 1337678, 1337680 → 1337678
Assignee | ||
Updated•8 years ago
|
Assignee: nobody → xidorn+moz
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Assignee | ||
Comment 9•8 years ago
|
||
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Assignee | ||
Comment 17•8 years ago
|
||
Comment 18•8 years ago
|
||
mozreview-review |
Comment on attachment 8868499 [details]
Bug 1345697 part 1 - Various fix for adding new files.
https://reviewboard.mozilla.org/r/140116/#review143884
Attachment #8868499 -
Flags: review?(cam) → review+
Comment 19•8 years ago
|
||
mozreview-review |
Comment on attachment 8868500 [details]
Bug 1345697 part 2 - Add CSSKeyframesRule and CSSKeyframeRule base class.
https://reviewboard.mozilla.org/r/140118/#review143886
Attachment #8868500 -
Flags: review?(cam) → review+
Comment 20•8 years ago
|
||
mozreview-review |
Comment on attachment 8868501 [details]
Impl to_css for KeyframeSelector.
https://reviewboard.mozilla.org/r/140120/#review143888
Attachment #8868501 -
Flags: review?(cam) → review+
Comment 21•8 years ago
|
||
mozreview-review |
Comment on attachment 8868502 [details]
Record source location for keyframes rule.
https://reviewboard.mozilla.org/r/140122/#review143890
Attachment #8868502 -
Flags: review?(cam) → review+
Comment 22•8 years ago
|
||
mozreview-review |
Comment on attachment 8868503 [details]
Align serialization of keyframes rule with Gecko.
https://reviewboard.mozilla.org/r/140124/#review143892
Attachment #8868503 -
Flags: review?(cam) → review+
Comment 23•8 years ago
|
||
mozreview-review |
Comment on attachment 8868504 [details]
Bug 1345697 part 3 - Implement CSSKeyframesRule and CSSKeyframeRule for stylo.
https://reviewboard.mozilla.org/r/140126/#review143900
Does it make sense to try to re-use some code between ServoCSSRuleList and ServoKeyframeList? (Maybe you already tried?)
::: layout/style/ServoKeyframesRule.cpp:331
(Diff revision 2)
> + // Construct mKeyframeList but ignore the result.
> + CssRules();
> + return mKeyframeList->GetRule(index);
Why not just:
return CssRules()->GetRule(index);
::: servo/components/style/stylesheets.rs:590
(Diff revision 2)
> dest.write_str("\n}")
> }
> }
>
> +impl KeyframesRule {
> + /// Returns the index of last keyframe whose matches the given selector.
"Returns the index of the last keyframe that matches the given selector."
::: servo/components/style/stylesheets.rs:595
(Diff revision 2)
> + /// Returns the index of last keyframe whose matches the given selector.
> + /// If the selector is not valid, or no keyframe is found, returns None.
> + ///
> + /// Related spec:
> + /// https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule-findrule
> + pub fn find_rule(&self, guard: &SharedRwLockReadGuard, select: &str) -> Option<usize> {
"selector" instead of "select"?
Attachment #8868504 -
Flags: review?(cam) → review+
Comment 24•8 years ago
|
||
mozreview-review |
Comment on attachment 8868505 [details]
Bug 1345697 part 4 - Update test expectation.
https://reviewboard.mozilla.org/r/140128/#review143924
::: layout/style/test/stylo-failures.md:39
(Diff revision 2)
> - * test_animations.html [1]
> + * test_animations.html [3]
> * test_animations_dynamic_changes.html [1]
> - * test_bug716226.html [1]
> + * test_bug716226.html [3]
;_;
Attachment #8868505 -
Flags: review?(cam) → review+
Comment 25•8 years ago
|
||
(In reply to Cameron McCormack (:heycam) from comment #24)
> Comment on attachment 8868505 [details]
> Bug 1345697 part 4 - Update test expectation.
>
> https://reviewboard.mozilla.org/r/140128/#review143924
>
> ::: layout/style/test/stylo-failures.md:39
> (Diff revision 2)
> > - * test_animations.html [1]
> > + * test_animations.html [3]
> > * test_animations_dynamic_changes.html [1]
> > - * test_bug716226.html [1]
> > + * test_bug716226.html [3]
>
> ;_;
It's because of bug 1344581 or bug 1364799. A test case that had not been running starts running. It's a good sign. Great Xidorn! Thank you!
I am now trying to fix both of bugs.
Assignee | ||
Comment 26•8 years ago
|
||
mozreview-review-reply |
Comment on attachment 8868504 [details]
Bug 1345697 part 3 - Implement CSSKeyframesRule and CSSKeyframeRule for stylo.
https://reviewboard.mozilla.org/r/140126/#review143900
Actually, it doesn't seem to me there is much code shareable between the two classes :/
> Why not just:
>
> return CssRules()->GetRule(index);
This is exactly what I tried first :)
Ths issue is that, `CssRules()` returns a `dom::CSSRuleList*`, which doesn't have a `GetRule` which returns a `ServoKeyframeRule`.
If we want to make `CssRules()` return `ServoKeyframeList*`, we would need to move the declaration of the class to the header file, otherwise the compiler would complain that `CssRules` doesn't have a compatible signature with the method it overrides. But the declaration is not needed otherwise... so I think it isn't worth.
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Assignee | ||
Updated•8 years ago
|
Attachment #8868501 -
Attachment is obsolete: true
Assignee | ||
Updated•8 years ago
|
Attachment #8868502 -
Attachment is obsolete: true
Comment 31•8 years ago
|
||
We're sorry, Autoland could not rebase your commits for you automatically. Please manually rebase your commits and try again.
hg error in cmd: hg rebase -s 407e3aa3f1b8 -d 55010a7ef404: rebasing 396794:407e3aa3f1b8 "Bug 1345697 part 1 - Various fix for adding new files. r=heycam"
merging layout/style/ServoBindings.cpp
rebasing 396795:a97464201a12 "Bug 1345697 part 2 - Add CSSKeyframesRule and CSSKeyframeRule base class. r=heycam"
rebasing 396796:41460384de01 "Bug 1345697 part 3 - Implement CSSKeyframesRule and CSSKeyframeRule for stylo. r=heycam"
rebasing 396797:a967a1284448 "Bug 1345697 part 4 - Update test expectation. r=heycam" (tip)
merging layout/style/test/stylo-failures.md
warning: conflicts while merging layout/style/test/stylo-failures.md! (edit, then use 'hg resolve --mark')
unresolved conflicts (see hg resolve, then hg rebase --continue)
Comment 32•8 years ago
|
||
Pushed by xquan@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/96c55b0b6a8c
part 1 - Various fix for adding new files. r=heycam
https://hg.mozilla.org/integration/autoland/rev/723d9907e9a9
part 2 - Add CSSKeyframesRule and CSSKeyframeRule base class. r=heycam
https://hg.mozilla.org/integration/autoland/rev/52f5f0e30e27
part 3 - Implement CSSKeyframesRule and CSSKeyframeRule for stylo. r=heycam
https://hg.mozilla.org/integration/autoland/rev/c5796625b535
part 4 - Update test expectation. r=heycam
Comment 33•8 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/96c55b0b6a8c
https://hg.mozilla.org/mozilla-central/rev/723d9907e9a9
https://hg.mozilla.org/mozilla-central/rev/52f5f0e30e27
https://hg.mozilla.org/mozilla-central/rev/c5796625b535
Status: NEW → RESOLVED
Closed: 8 years ago
status-firefox55:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla55
You need to log in
before you can comment on or make changes to this bug.
Description
•