diff options
author | Moonchild <moonchild@palemoon.org> | 2022-09-20 20:41:33 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-09-20 20:41:33 +0000 |
commit | 9fea63c9d417a69d8f56bb0481712d26c31b737b (patch) | |
tree | 6497ad5384426e1fd681da5bdb22f600e12c4c3a /devtools | |
parent | fc5b767f5dbed652966eea65f61036a97d9b893a (diff) | |
download | uxp-9fea63c9d417a69d8f56bb0481712d26c31b737b.tar.gz |
Issue #1992 - Part 1: Un-prefix -moz-{min|max}-content keywords.
Diffstat (limited to 'devtools')
-rw-r--r-- | devtools/client/shared/developer-toolbar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/client/shared/developer-toolbar.js b/devtools/client/shared/developer-toolbar.js index d844024187..3c2838ddc8 100644 --- a/devtools/client/shared/developer-toolbar.js +++ b/devtools/client/shared/developer-toolbar.js @@ -1032,7 +1032,7 @@ OutputPanel.prototype._resize = function () { break; } - this.document.body.style.width = "-moz-max-content"; + this.document.body.style.width = "max-content"; let style = this._frame.contentWindow.getComputedStyle(this.document.body); let frameWidth = parseInt(style.width, 10); let width = Math.min(maxWidth, frameWidth); |