Bug 965336 - Setting TextTrackCue's Start or End times should set its state to dirty. r=rillian

This commit is contained in:
Rick Eyre 2014-01-29 12:57:43 -05:00
parent 4799fe01c3
commit 4bab919aa0

View File

@ -89,6 +89,7 @@ public:
}
mStartTime = aStartTime;
mReset = true;
CueChanged();
}
@ -104,6 +105,7 @@ public:
}
mEndTime = aEndTime;
mReset = true;
CueChanged();
}