Skip to content

Commit

Permalink
removed baselineinterpr and buggy taint sources
Browse files Browse the repository at this point in the history
  • Loading branch information
0drai committed Aug 13, 2024
1 parent e9e49a1 commit a22ae64
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion modules/libpref/init/StaticPrefList.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7300,7 +7300,7 @@
# on the ones before it being enabled.
- name: javascript.options.blinterp
type: bool
value: true
value: false
mirror: always # LoadStartupJSPrefs
do_not_use_directly: true

Expand Down
32 changes: 16 additions & 16 deletions modules/libpref/init/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -4143,27 +4143,27 @@ pref("tainting.source.Navigator.appCodeName", true);
pref("tainting.source.Navigator.appName", true);
pref("tainting.source.Navigator.appVersion", true);
pref("tainting.source.Navigator.platform", true);
pref("tainting.source.Navigator.userAgent", true);
pref("tainting.source.Navigator.userAgent", false);
pref("tainting.source.Navigator.language", true);
pref("tainting.source.Navigator.languages", true);
pref("tainting.source.Plugin.description", true);
pref("tainting.source.Plugin.filename", true);
pref("tainting.source.Plugin.name", true);
pref("tainting.source.Screen.availWidth", true);
pref("tainting.source.Screen.availHeight", true);
pref("tainting.source.Screen.width", true);
pref("tainting.source.Screen.height", true);
pref("tainting.source.Screen.colorDepth", true);
pref("tainting.source.Screen.pixelDepth", true);
pref("tainting.source.Screen.availTop", true);
pref("tainting.source.Screen.availLeft", true);
pref("tainting.source.VisualViewport.offsetLeft", true);
pref("tainting.source.VisualViewport.offsetTop", true);
pref("tainting.source.VisualViewport.pageLeft", true);
pref("tainting.source.VisualViewport.pageTop", true);
pref("tainting.source.VisualViewport.width", true);
pref("tainting.source.VisualViewport.height", true);
pref("tainting.source.VisualViewport.scale", true);
pref("tainting.source.Screen.availWidth", false);
pref("tainting.source.Screen.availHeight", false);
pref("tainting.source.Screen.width", false);
pref("tainting.source.Screen.height", false);
pref("tainting.source.Screen.colorDepth", false);
pref("tainting.source.Screen.pixelDepth", false);
pref("tainting.source.Screen.availTop", false);
pref("tainting.source.Screen.availLeft", false);
pref("tainting.source.VisualViewport.offsetLeft", false);
pref("tainting.source.VisualViewport.offsetTop", false);
pref("tainting.source.VisualViewport.pageLeft", false);
pref("tainting.source.VisualViewport.pageTop", false);
pref("tainting.source.VisualViewport.width", false);
pref("tainting.source.VisualViewport.height", false);
pref("tainting.source.VisualViewport.scale", false);
pref("tainting.source.WebGL2RenderingContext.getParameter", true);
pref("tainting.source.WebGLRenderingContext.getParameter", true);
pref("tainting.source.WebGLShaderPrecisionFormat.rangeMin", true);
Expand Down

0 comments on commit a22ae64

Please sign in to comment.