mirror of
https://github.com/servo/servo.git
synced 2025-08-10 07:55:33 +01:00
Fix comment syntax
This commit is contained in:
parent
2aef2c3e58
commit
9eba9b668a
1 changed files with 1 additions and 1 deletions
|
@ -1421,7 +1421,7 @@ impl Fragment {
|
||||||
pub fn can_merge_with_fragment(&self, other: &Fragment) -> bool {
|
pub fn can_merge_with_fragment(&self, other: &Fragment) -> bool {
|
||||||
match (&self.specific, &other.specific) {
|
match (&self.specific, &other.specific) {
|
||||||
(&UnscannedTextFragment(_), &UnscannedTextFragment(_)) => {
|
(&UnscannedTextFragment(_), &UnscannedTextFragment(_)) => {
|
||||||
/// FIXME: Should probably use a whitelist of styles that can safely differ (#3165)
|
// FIXME: Should probably use a whitelist of styles that can safely differ (#3165)
|
||||||
self.font_style() == other.font_style() &&
|
self.font_style() == other.font_style() &&
|
||||||
self.text_decoration() == other.text_decoration() &&
|
self.text_decoration() == other.text_decoration() &&
|
||||||
self.white_space() == other.white_space()
|
self.white_space() == other.white_space()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue