From af981eb5f331c68e56a24a9ed63487514a90015d Mon Sep 17 00:00:00 2001 From: Cameron McCormack Date: Thu, 31 Dec 2015 19:13:18 +1100 Subject: [PATCH] Bug 1235969 - Unprefix uses of -moz-transform, -moz-transform-origin and -moz-backface-visibility in UA style sheets. r=xidorn --- layout/style/html.css | 2 +- layout/style/ua.css | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/layout/style/html.css b/layout/style/html.css index bb3a1d46e17..f8f47c660ef 100644 --- a/layout/style/html.css +++ b/layout/style/html.css @@ -759,7 +759,7 @@ audio:not([controls]) { *|*::-moz-html-canvas-content { display: block !important; /* we want to be an absolute and fixed container */ - -moz-transform: translate(0) !important; + transform: translate(0) !important; } video > .caption-box { diff --git a/layout/style/ua.css b/layout/style/ua.css index 43a7c8e72ef..87c227ef37e 100644 --- a/layout/style/ua.css +++ b/layout/style/ua.css @@ -43,10 +43,10 @@ justify-self: inherit; order: inherit; /* needed for "order" to work on table flex/grid items */ /* Bug 722777 */ - -moz-transform: inherit; - -moz-transform-origin: inherit; + transform: inherit; + transform-origin: inherit; /* Bug 724750 */ - -moz-backface-visibility: inherit; + backface-visibility: inherit; clip: inherit; }