Bug 1400176 - Prevent extra reflows by resetting html and body to display:block;r=nchevobbe draft
authorBrian Grinstead <bgrinstead@mozilla.com>
Wed, 18 Oct 2017 13:18:48 -0700
changeset 682835 3aebceafaedfd0fc58f549761c8dab04d1a8fa04
parent 682254 a29052590fc6538b89641e690d11731ca8e78120
child 736454 094184add6ca2fa854c813803ec8d2746a96af46
push id85171
push userbgrinstead@mozilla.com
push dateWed, 18 Oct 2017 20:18:56 +0000
reviewersnchevobbe
bugs1400176
milestone58.0a1
Bug 1400176 - Prevent extra reflows by resetting html and body to display:block;r=nchevobbe MozReview-Commit-ID: 38cBYjNgVZo
devtools/client/themes/webconsole.css
--- a/devtools/client/themes/webconsole.css
+++ b/devtools/client/themes/webconsole.css
@@ -1128,18 +1128,18 @@ a.learn-more-link.webconsole-learn-more-
   flex: 1;
   direction: ltr;
   overflow: auto;
   -moz-user-select: text;
   position: relative;
 }
 
 html,
-body,
-#app-wrapper {
+body {
+  display: block !important; /* Until Bug 1409413 removes the accidental display: flex */
   height: 100%;
   margin: 0;
   padding: 0;
 }
 
 body {
   overflow: hidden;
 }