tor-browser

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

bug1848849-theaa.com-printing-mode-fix.css (677B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 /**
      6 * www.theaa.com - Print preview is blank
      7 * Bug #1848849 - https://bugzilla.mozilla.org/show_bug.cgi?id=1848849
      8 * WebCompat issue #117996 - https://github.com/webcompat/web-bugs/issues/117996
      9 *
     10 * The site is adding a style rule of size: 16px for @page, which is very small and Chrome
     11 * is ignoring the rule, while Firefox honours it.
     12 * Depends on https://bugzilla.mozilla.org/show_bug.cgi?id=1807985
     13 */
     14 
     15 @media print {
     16  @page {
     17    size: a3 !important;
     18  }
     19 }