Bug 988409 - Turn on Path2D by default. r=roc, r=bz

This commit is contained in:
Rik Cabanier 2014-04-03 16:18:38 -04:00
parent 0e1572db57
commit a03dc8fbb8
2 changed files with 3 additions and 1 deletions

View File

@ -735,6 +735,8 @@ var interfaceNamesInGlobalScope =
"PaintRequestList",
// IMPORTANT: Do not change this list without review from a DOM peer!
"PannerNode",
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "Path2D", pref: "canvas.path.enabled" },
// IMPORTANT: Do not change this list without review from a DOM peer!
"Performance",
// IMPORTANT: Do not change this list without review from a DOM peer!

View File

@ -468,7 +468,7 @@ pref("canvas.focusring.enabled", false);
pref("canvas.customfocusring.enabled", false);
pref("canvas.hitregions.enabled", false);
// Add support for canvas path objects
pref("canvas.path.enabled", false);
pref("canvas.path.enabled", true);
// We want the ability to forcibly disable platform a11y, because
// some non-a11y-related components attempt to bring it up. See bug