Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Applications
Tor Browser
Commits
f5431617
Commit
f5431617
authored
Oct 09, 2019
by
Emilio Cobos Álvarez
Browse files
Bug 1587368 - follow-up: Unbust some ccov builds that are still using old Rust. a=shlindi
MANUAL PUSH: bustage
parent
ab7a5262
Changes
2
Hide whitespace changes
Inline
Side-by-side
servo/components/style/properties/longhands/box.mako.rs
View file @
f5431617
...
...
@@ -53,7 +53,7 @@ ${helpers.single_keyword(
>
impl
computed_value
::
T
{
pub
fn
is_absolutely_positioned
(
self
)
->
bool
{
matches!
(
self
,
Self
::
Absolute
|
Self
::
Fixed
)
matches!
(
self
,
computed_value
::
T
::
Absolute
|
computed_value
::
T
::
Fixed
)
}
}
</%
helpers
:
single_keyword
>
...
...
servo/components/style/values/computed/box.rs
View file @
f5431617
...
...
@@ -64,7 +64,7 @@ pub enum Float {
impl
Float
{
/// Returns true if `self` is not `None`.
pub
fn
is_floating
(
self
)
->
bool
{
self
!=
Self
::
None
self
!=
Float
::
None
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment