mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 04:41:11 +00:00
Bug 1887338 - guard CustomStateSet from inserting multiple states in internal set r=emilio
This can cause an issue where removing a state looks as though it didn't invalidate, because the internal representation contains multiple copies of the same state ident. Differential Revision: https://phabricator.services.mozilla.com/D205518
This commit is contained in:
parent
b73c04815d
commit
6ef51d3561
@ -81,14 +81,19 @@ void CustomStateSet::Add(const nsAString& aState, ErrorResult& aRv) {
|
||||
return;
|
||||
}
|
||||
|
||||
nsTArray<RefPtr<nsAtom>>& states = mTarget->EnsureCustomStates();
|
||||
RefPtr<nsAtom> atom = NS_AtomizeMainThread(aState);
|
||||
if (states.Contains(atom)) {
|
||||
return;
|
||||
}
|
||||
|
||||
Document* doc = mTarget->GetComposedDoc();
|
||||
PresShell* presShell = doc ? doc->GetPresShell() : nullptr;
|
||||
if (presShell) {
|
||||
presShell->CustomStatesWillChange(*mTarget);
|
||||
}
|
||||
|
||||
mTarget->EnsureCustomStates().AppendElement(atom);
|
||||
states.AppendElement(atom);
|
||||
|
||||
if (presShell) {
|
||||
presShell->CustomStateChanged(*mTarget, atom);
|
||||
|
@ -99,6 +99,19 @@
|
||||
assert_equals(getComputedStyle(mySibling).getPropertyValue('color'), 'rgb(255, 0, 0)');
|
||||
}, "state selector only applies to has() on given ident");
|
||||
|
||||
test(function(t) {
|
||||
myCE.elementInternals.states.add('--green');
|
||||
myCE.elementInternals.states.add('--green');
|
||||
myCE.elementInternals.states.add('--green');
|
||||
t.add_cleanup(() => { myCE.elementInternals.states.delete('--green') });
|
||||
assert_true(myCE.elementInternals.states.has('--green'));
|
||||
assert_equals(getComputedStyle(myCE).getPropertyValue('color'), 'rgb(0, 255, 0)');
|
||||
assert_true(myCE.elementInternals.states.delete('--green'));
|
||||
assert_false(myCE.elementInternals.states.has('--green'));
|
||||
assert_equals(getComputedStyle(myCE).getPropertyValue('color'), 'rgb(255, 0, 0)');
|
||||
assert_false(myCE.elementInternals.states.delete('--green'));
|
||||
}, "states added multiple times counts as one");
|
||||
|
||||
test(function(t) {
|
||||
myCE.elementInternals.states.add('--green');
|
||||
myCE.elementInternals.states.add('--foo');
|
||||
|
Loading…
Reference in New Issue
Block a user