1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 
7 #ifndef nsBlockDebugFlags_h__
8 #define nsBlockDebugFlags_h__
9 
10 #undef NOISY_FIRST_LETTER  // enables debug output for first-letter specific
11                            // layout
12 #undef NOISY_FLOAT  // enables debug output for float reflow (the in/out metrics
13                     // for the floated block)
14 #undef NOISY_FLOAT_CLEARING
15 #undef NOISY_FINAL_SIZE  // enables debug output for desired width/height
16                          // computation, once all children have been reflowed
17 #undef NOISY_REMOVE_FRAME
18 #undef NOISY_COMBINED_AREA  // enables debug output for combined area
19                             // computation
20 #undef NOISY_BLOCK_DIR_MARGINS
21 #undef NOISY_REFLOW_REASON     // gives a little info about why each reflow was
22                                // requested
23 #undef REFLOW_STATUS_COVERAGE  // I think this is most useful for printing, to
24                                // see which frames return "incomplete"
25 #undef NOISY_BLOCK_INVALIDATE  // enables debug output for all calls to
26                                // invalidate
27 #undef REALLY_NOISY_REFLOW     // some extra debug info
28 
29 #endif  // nsBlockDebugFlags_h__
30