diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-14 19:09:13 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-14 19:09:13 +0100 |
commit | defd5e17336d6a445e148158c948935f70dacc0f (patch) | |
tree | 7682234403286f8837cc0885e0a74d8520b1629e | |
parent | 5251d85c6af5ce0140786bc08d5cd4a924808554 (diff) | |
download | uxp-defd5e17336d6a445e148158c948935f70dacc0f.tar.gz |
[CSS] Only emit non-GC chrome wrapped XUL box warnings in debug builds.
-rw-r--r-- | layout/base/nsCSSFrameConstructor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/layout/base/nsCSSFrameConstructor.cpp b/layout/base/nsCSSFrameConstructor.cpp index 34cfc6b59a..37cd3e45ee 100644 --- a/layout/base/nsCSSFrameConstructor.cpp +++ b/layout/base/nsCSSFrameConstructor.cpp @@ -10882,6 +10882,7 @@ nsCSSFrameConstructor::ProcessChildren(nsFrameConstructorState& aState, // no? And if we cared we could look through the item list // instead of groveling through the framelist here.. nsStyleContext *frameStyleContext = aFrame->StyleContext(); +#ifdef DEBUG // Report a warning for non-GC frames, for chrome: if (!aFrame->IsGeneratedContentFrame() && mPresShell->GetPresContext()->IsChrome()) { @@ -10900,6 +10901,7 @@ nsCSSFrameConstructor::ProcessChildren(nsFrameConstructorState& aState, message, params, ArrayLength(params)); } +#endif RefPtr<nsStyleContext> blockSC = mPresShell->StyleSet()-> ResolveAnonymousBoxStyle(nsCSSAnonBoxes::mozXULAnonymousBlock, |