mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-02 13:04:42 +01:00
17 lines
820 B
Diff
17 lines
820 B
Diff
|
diff --git a/Source/WebCore/rendering/RenderBlock.h b/Source/WebCore/rendering/RenderBlock.h
|
||
|
index 2f6f4b6..3859442 100644
|
||
|
--- a/Source/WebCore/rendering/RenderBlock.h
|
||
|
+++ b/Source/WebCore/rendering/RenderBlock.h
|
||
|
@@ -865,7 +865,11 @@ private:
|
||
|
|
||
|
void setAtBeforeSideOfBlock(bool b) { m_atBeforeSideOfBlock = b; }
|
||
|
void setAtAfterSideOfBlock(bool b) { m_atAfterSideOfBlock = b; }
|
||
|
- void clearMargin() { m_positiveMargin = m_negativeMargin = 0; }
|
||
|
+ void clearMargin()
|
||
|
+ {
|
||
|
+ m_positiveMargin = 0;
|
||
|
+ m_negativeMargin = 0;
|
||
|
+ }
|
||
|
void setMarginBeforeQuirk(bool b) { m_marginBeforeQuirk = b; }
|
||
|
void setMarginAfterQuirk(bool b) { m_marginAfterQuirk = b; }
|
||
|
void setDeterminedMarginBeforeQuirk(bool b) { m_determinedMarginBeforeQuirk = b; }
|