It's 2015. The time has come to remove the -webkit prefix from the CSS transform properties: - transform - transform-origin - transform-style - perspective - perspective-origin For transform-style, we'll keep the older property around as well, so that if we change behaviour we can detect legacy content.
<rdar://problem/11568151>
Created attachment 249148 [details] Patch
Comment on attachment 249148 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249148&action=review > LayoutTests/transforms/2d/transform-2d-prefixed.html:2 > +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" > + "http://www.w3.org/TR/html4/loose.dtd"> <!DOCTYPE html> > LayoutTests/transforms/2d/transform-2d-prefixed.html:4 > +<html lang="en"> no lang > LayoutTests/transforms/2d/transform-2d-prefixed.html:6 > + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> remove
Created attachment 249153 [details] Patch
Created attachment 249163 [details] Patch
Created attachment 249164 [details] Patch
Committed r181824: <http://trac.webkit.org/changeset/181824>
This broke Windows build: https://build.webkit.org/builders/Apple%20Win%20Release%20%28Build%29/builds/68556/steps/compile-webkit/logs/stdio
Re-opened since this is blocked by bug 142935
Comment on attachment 249164 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249164&action=review > Source/WebCore/css/CSSPropertyNames.in:618 > +# Keeping -webkit-transform-style around is how we'll detect legacy content. At that point > +# we'll have to add a custom builder and a new ETransformStyle3D type. I suspect that it could be due to these comments - this file uses C++ style comments elsewhere.
Created attachment 249190 [details] Patch
Committed r181832: <http://trac.webkit.org/changeset/181832>