tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nsBlockDebugFlags.h (1196B)


      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_FINAL_SIZE    // enables debug output for desired width/height
     13                           // computation, once all children have been reflowed
     14 #undef NOISY_REMOVE_FRAME
     15 #undef NOISY_BLOCK_DIR_MARGINS
     16 #undef NOISY_REFLOW_REASON     // gives a little info about why each reflow was
     17                               // requested
     18 #undef REFLOW_STATUS_COVERAGE  // I think this is most useful for printing, to
     19                               // see which frames return "incomplete"
     20 #undef NOISY_BLOCK_INVALIDATE  // enables debug output for all calls to
     21                               // invalidate
     22 #undef REALLY_NOISY_REFLOW     // some extra debug info
     23 
     24 #endif  // nsBlockDebugFlags_h__