Bug 1207734 - Part 2. Add a preference to enable/disable individual transform. r=emilio draft
authorcku <cku@mozilla.com>
Wed, 06 Dec 2017 23:24:27 +0800
changeset 749184 e23cbad8a498931010a496d3480b056d1781dbfa
parent 749183 04fe9115ce1d189155ff9b2c89b1a656a55dd1c9
child 749185 144aaad21c5689e10b531cc5f2065519bef518b4
push id97349
push userbbirtles@mozilla.com
push dateWed, 31 Jan 2018 02:59:16 +0000
reviewersemilio
bugs1207734
milestone60.0a1
Bug 1207734 - Part 2. Add a preference to enable/disable individual transform. r=emilio MozReview-Commit-ID: ESEWIh12anQ
modules/libpref/init/all.js
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -2924,16 +2924,19 @@ pref("layout.css.moz-document.content.en
 pref("layout.css.dpi", -1);
 
 // Set the number of device pixels per CSS pixel. A value <= 0 means choose
 // automatically based on user settings for the platform (e.g., "UI scale factor"
 // on Mac). A positive value is used as-is. This effectively controls the size
 // of a CSS "px". This is only used for windows on the screen, not for printing.
 pref("layout.css.devPixelsPerPx", "-1.0");
 
+// Is support for CSS individual transform enabled?
+pref("layout.css.individual-transform.enabled", false);
+
 // Is support for CSS initial-letter property enabled?
 pref("layout.css.initial-letter.enabled", false);
 
 // Is support for mix-blend-mode enabled?
 pref("layout.css.mix-blend-mode.enabled", true);
 
 // Is support for isolation enabled?
 pref("layout.css.isolation.enabled", true);