diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-14 19:09:13 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:44:16 +0200 |
commit | 8ffe533b3d056535ff85e5e6b311010dae193c99 (patch) | |
tree | 0757046f2cc15a0ca9121c3bd57a39b05ed579c9 /layout | |
parent | 9670bdb685d50dfb630dddcd471aa7699f23106e (diff) | |
download | uxp-8ffe533b3d056535ff85e5e6b311010dae193c99.tar.gz |
[CSS] Only emit non-GC chrome wrapped XUL box warnings in debug builds.
Diffstat (limited to 'layout')
-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 ec676ca921..6642a090d7 100644 --- a/layout/base/nsCSSFrameConstructor.cpp +++ b/layout/base/nsCSSFrameConstructor.cpp @@ -10886,6 +10886,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()) { @@ -10904,6 +10905,7 @@ nsCSSFrameConstructor::ProcessChildren(nsFrameConstructorState& aState, message, params, ArrayLength(params)); } +#endif RefPtr<nsStyleContext> blockSC = mPresShell->StyleSet()-> ResolveAnonymousBoxStyle(nsCSSAnonBoxes::mozXULAnonymousBlock, |