Sync servo stuff.
Categories
(Core :: CSS Parsing and Computation, task, P3)
Tracking
()
Tracking | Status | |
---|---|---|
firefox72 | --- | fixed |
People
(Reporter: emilio, Assigned: emilio)
Details
Attachments
(10 files)
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review |
Assignee | ||
Comment 1•6 years ago
|
||
Assignee | ||
Comment 2•6 years ago
|
||
Part of #22854.
Assignee | ||
Comment 3•6 years ago
|
||
Assignee | ||
Comment 4•6 years ago
|
||
Assignee | ||
Comment 5•6 years ago
|
||
This needs a lot more hooks before it'll actually be a good
implementation, but for a start it can help get some feedback on if this
is the right way to go about it.
Part of servo/servo#4577
Servo commit: b8f3e8bb2e9
Assignee | ||
Comment 6•6 years ago
|
||
The LRUCache implementation has been replaced, and no longer requires a backing store larger than its capacity.
Assignee | ||
Comment 7•6 years ago
|
||
Rect {
start_corner: Vec2 { i: 0.0 px, b: 0.0 px },
size: Vec2 { i: 1024.0 px, b: 20.0 px },
}
… instead of:
Rect {
start_corner: Vec2 {
inline: CSSPixelLength(
0.0,
),
block: CSSPixelLength(
0.0,
),
},
size: Vec2 {
inline: CSSPixelLength(
1024.0,
),
block: CSSPixelLength(
0.0,
),
},
}
Assignee | ||
Comment 8•6 years ago
|
||
Assignee | ||
Comment 9•6 years ago
|
||
Servo is on a newer cssparser version.
Assignee | ||
Comment 10•6 years ago
|
||
Assignee | ||
Comment 11•6 years ago
|
||
Assignee | ||
Updated•6 years ago
|
Comment 12•6 years ago
|
||
Comment 13•6 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/62a3bc7b4137
https://hg.mozilla.org/mozilla-central/rev/b9f29a6dad97
https://hg.mozilla.org/mozilla-central/rev/c8685b4f6f0a
https://hg.mozilla.org/mozilla-central/rev/3b2c625c9018
https://hg.mozilla.org/mozilla-central/rev/584249c337ab
https://hg.mozilla.org/mozilla-central/rev/0c22ff31f55b
https://hg.mozilla.org/mozilla-central/rev/05767a01cd42
https://hg.mozilla.org/mozilla-central/rev/f42af586cb9b
https://hg.mozilla.org/mozilla-central/rev/4d8362351723
https://hg.mozilla.org/mozilla-central/rev/0dbda33a1347
Description
•