Bug 1383307: Use proper initializer in ServoStyleContext constructor. r=manishearth

Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io>
This commit is contained in:
Emilio Cobos Álvarez 2017-07-23 05:06:06 +02:00
Родитель 1e214a80ab
Коммит 698850aeb4
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -22,11 +22,10 @@ ServoStyleContext::ServoStyleContext(
CSSPseudoElementType aPseudoType,
ServoComputedDataForgotten aComputedValues)
: nsStyleContext(aParent, aPseudoTag, aPseudoType)
, mPresContext(aPresContext)
, mSource(aComputedValues)
{
mPresContext = aPresContext;
AddStyleBit(Servo_ComputedValues_GetStyleBits(this));
FinishConstruction();
// No need to call ApplyStyleFixups here, since fixups are handled by Servo when