From 35532da8f82a675372fbc55d8898f77531efcf62 Mon Sep 17 00:00:00 2001 From: Jonathan Watt Date: Fri, 20 Jul 2018 11:43:15 +0100 Subject: [PATCH] Bug 1480073 pt 1. Fix -webkit-appearance in property_database.js. r=emilio --- layout/style/test/property_database.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/layout/style/test/property_database.js b/layout/style/test/property_database.js index 29df24b490f4..f47a7ffe7f4e 100644 --- a/layout/style/test/property_database.js +++ b/layout/style/test/property_database.js @@ -7862,10 +7862,11 @@ if (IsCSSPropertyPrefEnabled("layout.css.prefixes.webkit")) { if (IsCSSPropertyPrefEnabled("layout.css.webkit-appearance.enabled")) { gCSSProperties["-webkit-appearance"] = { - domProp: "WebkitAppearance", + domProp: "webkitAppearance", inherited: false, - type: CSS_TYPE_LONGHAND, + type: CSS_TYPE_SHORTHAND_AND_LONGHAND, alias_for: "-moz-appearance", + subproperties: [ "-moz-appearance" ], }; }