mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 14:15:30 +00:00
Bug 637214. Restore our nice asserts. r=bzbarsky, a=blocker
This commit is contained in:
parent
445046bc7a
commit
b0fba9d270
@ -346,6 +346,9 @@ nsIdentifierMapEntry::FireChangeCallbacks(Element* aOldElement,
|
||||
Element* aNewElement,
|
||||
PRBool aImageOnly)
|
||||
{
|
||||
NS_ASSERTION(!nsContentUtils::IsSafeToRunScript(),
|
||||
"Missing script blockers around code that modifies id-hash");
|
||||
|
||||
if (!mChangeCallbacks)
|
||||
return;
|
||||
|
||||
@ -2622,6 +2625,9 @@ nsDocument::RemoveFromNameTable(Element *aElement, nsIAtom* aName)
|
||||
void
|
||||
nsDocument::AddToIdTable(Element *aElement, nsIAtom* aId)
|
||||
{
|
||||
NS_ASSERTION(!nsContentUtils::IsSafeToRunScript(),
|
||||
"Scripts should be blocked when manipulating the ID table");
|
||||
|
||||
nsIdentifierMapEntry *entry =
|
||||
mIdentifierMap.PutEntry(nsDependentAtomString(aId));
|
||||
|
||||
@ -2634,6 +2640,8 @@ void
|
||||
nsDocument::RemoveFromIdTable(Element *aElement, nsIAtom* aId)
|
||||
{
|
||||
NS_ASSERTION(aId, "huhwhatnow?");
|
||||
NS_ASSERTION(!nsContentUtils::IsSafeToRunScript(),
|
||||
"Scripts should be blocked when manipulating the ID table");
|
||||
|
||||
// Speed up document teardown
|
||||
if (mIdentifierMap.Count() == 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user