<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[184822] trunk/Source/WebInspectorUI</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/184822">184822</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2015-05-23 08:01:59 -0700 (Sat, 23 May 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>Web Inspector: Update CSS Autocompletion properties and values
https://bugs.webkit.org/show_bug.cgi?id=145341

Patch by Joseph Pecoraro &lt;pecoraro@apple.com&gt; on 2015-05-23
Reviewed by Timothy Hatcher.

* UserInterface/Models/CSSKeywordCompletions.js:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebInspectorUIChangeLog">trunk/Source/WebInspectorUI/ChangeLog</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceModelsCSSKeywordCompletionsjs">trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebInspectorUIChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/ChangeLog (184821 => 184822)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/ChangeLog        2015-05-23 06:40:41 UTC (rev 184821)
+++ trunk/Source/WebInspectorUI/ChangeLog        2015-05-23 15:01:59 UTC (rev 184822)
</span><span class="lines">@@ -1,3 +1,12 @@
</span><ins>+2015-05-23  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
+
+        Web Inspector: Update CSS Autocompletion properties and values
+        https://bugs.webkit.org/show_bug.cgi?id=145341
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Models/CSSKeywordCompletions.js:
+
</ins><span class="cx"> 2015-05-22  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Web Inspector: Adopt Object.setPrototypeOf
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceModelsCSSKeywordCompletionsjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js (184821 => 184822)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js        2015-05-23 06:40:41 UTC (rev 184821)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js        2015-05-23 15:01:59 UTC (rev 184822)
</span><span class="lines">@@ -116,6 +116,7 @@
</span><span class="cx">     &quot;-webkit-text-stroke&quot;, &quot;-webkit-text-stroke-color&quot;, &quot;-webkit-text-stroke-width&quot;, &quot;-webkit-user-modify&quot;,
</span><span class="cx">     &quot;-webkit-user-select&quot;, &quot;-webkit-writing-mode&quot;, &quot;-webkit-cursor-visibility&quot;, &quot;image-orientation&quot;, &quot;image-resolution&quot;,
</span><span class="cx">     &quot;overflow-wrap&quot;, &quot;-webkit-text-align-last&quot;, &quot;-webkit-text-justify&quot;, &quot;-webkit-ruby-position&quot;, &quot;-webkit-text-decoration-line&quot;,
</span><ins>+    &quot;font-synthesis&quot;,
</ins><span class="cx"> 
</span><span class="cx">     // iOS Properties
</span><span class="cx">     &quot;-webkit-overflow-scrolling&quot;, &quot;-webkit-touch-callout&quot;, &quot;-webkit-tap-highlight-color&quot;
</span><span class="lines">@@ -233,9 +234,10 @@
</span><span class="cx">     ],
</span><span class="cx">     &quot;cursor&quot;: [
</span><span class="cx">         &quot;none&quot;, &quot;copy&quot;, &quot;auto&quot;, &quot;crosshair&quot;, &quot;default&quot;, &quot;pointer&quot;, &quot;move&quot;, &quot;vertical-text&quot;, &quot;cell&quot;, &quot;context-menu&quot;,
</span><del>-        &quot;alias&quot;, &quot;progress&quot;, &quot;no-drop&quot;, &quot;not-allowed&quot;, &quot;-webkit-zoom-in&quot;, &quot;-webkit-zoom-out&quot;, &quot;e-resize&quot;, &quot;ne-resize&quot;,
</del><ins>+        &quot;alias&quot;, &quot;progress&quot;, &quot;no-drop&quot;, &quot;not-allowed&quot;, &quot;zoom-in&quot;, &quot;zoom-out&quot;, &quot;e-resize&quot;, &quot;ne-resize&quot;,
</ins><span class="cx">         &quot;nw-resize&quot;, &quot;n-resize&quot;, &quot;se-resize&quot;, &quot;sw-resize&quot;, &quot;s-resize&quot;, &quot;w-resize&quot;, &quot;ew-resize&quot;, &quot;ns-resize&quot;,
</span><span class="cx">         &quot;nesw-resize&quot;, &quot;nwse-resize&quot;, &quot;col-resize&quot;, &quot;row-resize&quot;, &quot;text&quot;, &quot;wait&quot;, &quot;help&quot;, &quot;all-scroll&quot;, &quot;-webkit-grab&quot;,
</span><ins>+        &quot;-webkit-zoom-in&quot;, &quot;-webkit-zoom-out&quot;,
</ins><span class="cx">         &quot;-webkit-grabbing&quot;, &quot;url()&quot;, &quot;-webkit-image-set()&quot;
</span><span class="cx">     ],
</span><span class="cx">     &quot;border-width&quot;: [
</span><span class="lines">@@ -321,6 +323,9 @@
</span><span class="cx">     &quot;font-weight&quot;: [
</span><span class="cx">         &quot;normal&quot;, &quot;bold&quot;, &quot;bolder&quot;, &quot;lighter&quot;, &quot;100&quot;, &quot;200&quot;, &quot;300&quot;, &quot;400&quot;, &quot;500&quot;, &quot;600&quot;, &quot;700&quot;, &quot;800&quot;, &quot;900&quot;
</span><span class="cx">     ],
</span><ins>+    &quot;font-synthesis&quot;: [
+        &quot;none&quot;, &quot;weight&quot;, &quot;style&quot;
+    ],
</ins><span class="cx">     &quot;margin-before-collapse&quot;: [
</span><span class="cx">         &quot;collapse&quot;, &quot;separate&quot;, &quot;discard&quot;
</span><span class="cx">     ],
</span><span class="lines">@@ -606,6 +611,12 @@
</span><span class="cx">     &quot;page&quot;: [
</span><span class="cx">         &quot;auto&quot;
</span><span class="cx">     ],
</span><ins>+    &quot;perspective&quot;: [
+        &quot;none&quot;
+    ],
+    &quot;perspective-origin&quot;: [
+        &quot;none&quot;, &quot;left&quot;, &quot;right&quot;, &quot;bottom&quot;, &quot;top&quot;, &quot;center&quot;
+    ],
</ins><span class="cx">     &quot;-webkit-marquee-increment&quot;: [
</span><span class="cx">         &quot;small&quot;, &quot;large&quot;, &quot;medium&quot;
</span><span class="cx">     ],
</span><span class="lines">@@ -636,11 +647,14 @@
</span><span class="cx">     &quot;-webkit-text-emphasis-position&quot;: [
</span><span class="cx">         &quot;over&quot;, &quot;under&quot;, &quot;left&quot;, &quot;right&quot;
</span><span class="cx">     ],
</span><del>-    &quot;-webkit-transform&quot;: [
</del><ins>+    &quot;transform&quot;: [
</ins><span class="cx">         &quot;none&quot;,
</span><span class="cx">         &quot;scale()&quot;, &quot;scaleX()&quot;, &quot;scaleY()&quot;, &quot;scale3d()&quot;, &quot;rotate()&quot;, &quot;rotateX()&quot;, &quot;rotateY()&quot;, &quot;rotateZ()&quot;, &quot;rotate3d()&quot;, &quot;skew()&quot;, &quot;skewX()&quot;, &quot;skewY()&quot;,
</span><span class="cx">         &quot;translate()&quot;, &quot;translateX()&quot;, &quot;translateY()&quot;, &quot;translateZ()&quot;, &quot;translate3d()&quot;, &quot;matrix()&quot;, &quot;matrix3d()&quot;, &quot;perspective()&quot;
</span><span class="cx">     ],
</span><ins>+    &quot;transform-style&quot;: [
+        &quot;flat&quot;, &quot;preserve-3d&quot;
+    ],
</ins><span class="cx">     &quot;-webkit-cursor-visibility&quot;: [
</span><span class="cx">         &quot;auto&quot;, &quot;auto-hide&quot;
</span><span class="cx">     ],
</span><span class="lines">@@ -666,11 +680,14 @@
</span><span class="cx">         &quot;from-image&quot;, &quot;snap&quot;
</span><span class="cx">     ],
</span><span class="cx">     &quot;-webkit-blend-mode&quot;: [
</span><del>-        &quot;normal&quot;, &quot;multiply&quot;, &quot;screen&quot;, &quot;overlay&quot;, &quot;darken&quot;, &quot;lighten&quot;, &quot;color-dodge&quot;, &quot;color-burn&quot;, &quot;hard-light&quot;, &quot;soft-light&quot;, &quot;difference&quot;, &quot;exclusion&quot;, &quot;hue&quot;, &quot;saturation&quot;, &quot;color&quot;, &quot;luminosity&quot;
</del><ins>+        &quot;normal&quot;, &quot;multiply&quot;, &quot;screen&quot;, &quot;overlay&quot;, &quot;darken&quot;, &quot;lighten&quot;, &quot;color-dodge&quot;, &quot;color-burn&quot;, &quot;hard-light&quot;, &quot;soft-light&quot;, &quot;difference&quot;, &quot;exclusion&quot;, &quot;plus-darker&quot;, &quot;plus-lighter&quot;, &quot;hue&quot;, &quot;saturation&quot;, &quot;color&quot;, &quot;luminosity&quot;,
</ins><span class="cx">     ],
</span><ins>+    &quot;mix-blend-mode&quot;: [
+        &quot;normal&quot;, &quot;multiply&quot;, &quot;screen&quot;, &quot;overlay&quot;, &quot;darken&quot;, &quot;lighten&quot;, &quot;color-dodge&quot;, &quot;color-burn&quot;, &quot;hard-light&quot;, &quot;soft-light&quot;, &quot;difference&quot;, &quot;exclusion&quot;, &quot;plus-darker&quot;, &quot;plus-lighter&quot;, &quot;hue&quot;, &quot;saturation&quot;, &quot;color&quot;, &quot;luminosity&quot;,
+    ],
</ins><span class="cx">     &quot;mix&quot;: [
</span><span class="cx">         &quot;auto&quot;,
</span><del>-        &quot;normal&quot;, &quot;multiply&quot;, &quot;screen&quot;, &quot;overlay&quot;, &quot;darken&quot;, &quot;lighten&quot;, &quot;color-dodge&quot;, &quot;color-burn&quot;, &quot;hard-light&quot;, &quot;soft-light&quot;, &quot;difference&quot;, &quot;exclusion&quot;, &quot;hue&quot;, &quot;saturation&quot;, &quot;color&quot;, &quot;luminosity&quot;,
</del><ins>+        &quot;normal&quot;, &quot;multiply&quot;, &quot;screen&quot;, &quot;overlay&quot;, &quot;darken&quot;, &quot;lighten&quot;, &quot;color-dodge&quot;, &quot;color-burn&quot;, &quot;hard-light&quot;, &quot;soft-light&quot;, &quot;difference&quot;, &quot;exclusion&quot;, &quot;plus-darker&quot;, &quot;plus-lighter&quot;, &quot;hue&quot;, &quot;saturation&quot;, &quot;color&quot;, &quot;luminosity&quot;,
</ins><span class="cx">         &quot;clear&quot;, &quot;copy&quot;, &quot;destination&quot;, &quot;source-over&quot;, &quot;destination-over&quot;, &quot;source-in&quot;, &quot;destination-in&quot;, &quot;source-out&quot;, &quot;destination-out&quot;, &quot;source-atop&quot;, &quot;destination-atop&quot;, &quot;xor&quot;
</span><span class="cx">     ],
</span><span class="cx">     &quot;geometry&quot;: [
</span><span class="lines">@@ -695,17 +712,42 @@
</span><span class="cx">         &quot;slice&quot;, &quot;clone&quot;
</span><span class="cx">     ],
</span><span class="cx">     &quot;align-content&quot;: [
</span><del>-        &quot;flex-start&quot;, &quot;flex-end&quot;, &quot;center&quot;, &quot;space-between&quot;, &quot;space-around&quot;, &quot;stretch&quot;
</del><ins>+        &quot;auto&quot;,
+        &quot;baseline&quot;, &quot;last-baseline&quot;,
+        &quot;space-between&quot;, &quot;space-around&quot;, &quot;space-evenly&quot;, &quot;stretch&quot;,
+        &quot;center&quot;, &quot;start&quot;, &quot;end&quot;, &quot;flex-start&quot;, &quot;flex-end&quot;, &quot;left&quot;, &quot;right&quot;,
+        &quot;true&quot;, &quot;safe&quot;
</ins><span class="cx">     ],
</span><ins>+    &quot;justify-content&quot;: [
+        &quot;auto&quot;,
+        &quot;baseline&quot;, &quot;last-baseline&quot;, &quot;space-between&quot;, &quot;space-around&quot;, &quot;space-evenly&quot;, &quot;stretch&quot;,
+        &quot;center&quot;, &quot;start&quot;, &quot;end&quot;, &quot;flex-start&quot;, &quot;flex-end&quot;, &quot;left&quot;, &quot;right&quot;,
+        &quot;true&quot;, &quot;safe&quot;
+    ],
</ins><span class="cx">     &quot;align-items&quot;: [
</span><del>-        &quot;flex-start&quot;, &quot;flex-end&quot;, &quot;center&quot;, &quot;baseline&quot;, &quot;stretch&quot;
</del><ins>+        &quot;auto&quot;, &quot;stretch&quot;,
+        &quot;baseline&quot;, &quot;last-baseline&quot;,
+        &quot;center&quot;, &quot;start&quot;, &quot;end&quot;, &quot;self-start&quot;, &quot;self-end&quot;, &quot;flex-start&quot;, &quot;flex-end&quot;, &quot;left&quot;, &quot;right&quot;,
+        &quot;true&quot;, &quot;safe&quot;
</ins><span class="cx">     ],
</span><span class="cx">     &quot;align-self&quot;: [
</span><del>-        &quot;auto&quot;, &quot;flex-start&quot;, &quot;flex-end&quot;, &quot;center&quot;, &quot;baseline&quot;, &quot;stretch&quot;
</del><ins>+        &quot;auto&quot;, &quot;stretch&quot;,
+        &quot;baseline&quot;, &quot;last-baseline&quot;,
+        &quot;center&quot;, &quot;start&quot;, &quot;end&quot;, &quot;self-start&quot;, &quot;self-end&quot;, &quot;flex-start&quot;, &quot;flex-end&quot;, &quot;left&quot;, &quot;right&quot;,
+        &quot;true&quot;, &quot;safe&quot;
</ins><span class="cx">     ],
</span><del>-    &quot;justify-content&quot;: [
-        &quot;flex-start&quot;, &quot;flex-end&quot;, &quot;center&quot;, &quot;space-between&quot;, &quot;space-around&quot;
</del><ins>+    &quot;justify-items&quot;: [
+        &quot;auto&quot;, &quot;stretch&quot;,
+        &quot;baseline&quot;, &quot;last-baseline&quot;,
+        &quot;center&quot;, &quot;start&quot;, &quot;end&quot;, &quot;self-start&quot;, &quot;self-end&quot;, &quot;flex-start&quot;, &quot;flex-end&quot;, &quot;left&quot;, &quot;right&quot;,
+        &quot;true&quot;, &quot;safe&quot;
</ins><span class="cx">     ],
</span><ins>+    &quot;justify-self&quot;: [
+        &quot;auto&quot;, &quot;stretch&quot;,
+        &quot;baseline&quot;, &quot;last-baseline&quot;,
+        &quot;center&quot;, &quot;start&quot;, &quot;end&quot;, &quot;self-start&quot;, &quot;self-end&quot;, &quot;flex-start&quot;, &quot;flex-end&quot;, &quot;left&quot;, &quot;right&quot;,
+        &quot;true&quot;, &quot;safe&quot;
+    ],
</ins><span class="cx">     &quot;flex-direction&quot;: [
</span><span class="cx">         &quot;row&quot;, &quot;row-reverse&quot;, &quot;column&quot;, &quot;column-reverse&quot;
</span><span class="cx">     ],
</span><span class="lines">@@ -735,7 +777,7 @@
</span><span class="cx">         &quot;auto&quot;
</span><span class="cx">     ],
</span><span class="cx">     &quot;-webkit-grid-auto-flow&quot;: [
</span><del>-        &quot;none&quot;, &quot;rows&quot;, &quot;columns&quot;
</del><ins>+        &quot;row&quot;, &quot;column&quot;, &quot;dense&quot;
</ins><span class="cx">     ],
</span><span class="cx">     &quot;-webkit-grid-column&quot;: [
</span><span class="cx">         &quot;auto&quot;
</span><span class="lines">@@ -750,7 +792,7 @@
</span><span class="cx">         &quot;auto&quot;, &quot;-webkit-max-content&quot;, &quot;-webkit-min-content&quot;
</span><span class="cx">     ],
</span><span class="cx">     &quot;-webkit-ruby-position&quot;: [
</span><del>-        &quot;after&quot;, &quot;before&quot;
</del><ins>+        &quot;after&quot;, &quot;before&quot;, &quot;inter-character&quot;
</ins><span class="cx">     ],
</span><span class="cx">     &quot;-webkit-text-align-last&quot;: [
</span><span class="cx">         &quot;auto&quot;, &quot;start&quot;, &quot;end&quot;, &quot;left&quot;, &quot;right&quot;, &quot;center&quot;, &quot;justify&quot;
</span><span class="lines">@@ -848,9 +890,6 @@
</span><span class="cx">     &quot;-webkit-text-security&quot;: [
</span><span class="cx">         &quot;disc&quot;, &quot;circle&quot;, &quot;square&quot;, &quot;none&quot;
</span><span class="cx">     ],
</span><del>-    &quot;-webkit-transform-style&quot;: [
-        &quot;flat&quot;, &quot;preserve-3d&quot;
-    ],
</del><span class="cx">     &quot;-webkit-user-drag&quot;: [
</span><span class="cx">         &quot;auto&quot;, &quot;none&quot;, &quot;element&quot;
</span><span class="cx">     ],
</span><span class="lines">@@ -878,11 +917,11 @@
</span><span class="cx">     &quot;-webkit-aspect-ratio&quot;: [
</span><span class="cx">         &quot;auto&quot;, &quot;from-dimensions&quot;, &quot;from-intrinsic&quot;, &quot;/&quot;
</span><span class="cx">     ],
</span><del>-    &quot;-webkit-filter&quot;: [
</del><ins>+    &quot;filter&quot;: [
</ins><span class="cx">         &quot;none&quot;, &quot;grayscale()&quot;, &quot;sepia()&quot;, &quot;saturate()&quot;, &quot;hue-rotate()&quot;, &quot;invert()&quot;, &quot;opacity()&quot;, &quot;brightness()&quot;, &quot;contrast()&quot;, &quot;blur()&quot;, &quot;drop-shadow()&quot;, &quot;custom()&quot;
</span><span class="cx">     ],
</span><del>-    &quot;-webkit-perspective&quot;: [
-        &quot;none&quot;
</del><ins>+    &quot;-webkit-backdrop-filter&quot;: [
+        &quot;none&quot;, &quot;grayscale()&quot;, &quot;sepia()&quot;, &quot;saturate()&quot;, &quot;hue-rotate()&quot;, &quot;invert()&quot;, &quot;opacity()&quot;, &quot;brightness()&quot;, &quot;contrast()&quot;, &quot;blur()&quot;, &quot;drop-shadow()&quot;, &quot;custom()&quot;
</ins><span class="cx">     ],
</span><span class="cx">     &quot;-webkit-column-count&quot;: [
</span><span class="cx">         &quot;auto&quot;, &quot;calc()&quot;, &quot;-webkit-calc()&quot;
</span><span class="lines">@@ -896,6 +935,9 @@
</span><span class="cx">     &quot;-webkit-column-width&quot;: [
</span><span class="cx">         &quot;auto&quot;, &quot;calc()&quot;, &quot;-webkit-calc()&quot;
</span><span class="cx">     ],
</span><ins>+    &quot;-webkit-column-fill&quot;: [
+        &quot;auto&quot;, &quot;balance&quot;
+    ],
</ins><span class="cx">     &quot;-webkit-hyphenate-character&quot;: [
</span><span class="cx">         &quot;none&quot;
</span><span class="cx">     ],
</span><span class="lines">@@ -928,20 +970,26 @@
</span><span class="cx">     ],
</span><span class="cx">     /*
</span><span class="cx">     &quot;-webkit-appearance&quot;: [
</span><del>-        &quot;none&quot;, &quot;checkbox&quot;, &quot;radio&quot;, &quot;push-button&quot;, &quot;square-button&quot;, &quot;button&quot;, &quot;button-bevel&quot;, &quot;default-button&quot;, &quot;inner-spin-button&quot;, &quot;listbox&quot;, &quot;listitem&quot;, &quot;media-enter-fullscreen-button&quot;, &quot;media-exit-fullscreen-button&quot;, &quot;media-fullscreen-volume-slider&quot;, &quot;media-fullscreen-volume-slider-thumb&quot;, &quot;media-mute-button&quot;, &quot;media-play-button&quot;, &quot;media-overlay-play-button&quot;, &quot;media-seek-back-button&quot;, &quot;media-seek-forward-button&quot;, &quot;media-rewind-button&quot;, &quot;media-return-to-realtime-button&quot;, &quot;media-toggle-closed-captions-button&quot;, &quot;media-slider&quot;, &quot;media-sliderthumb&quot;, &quot;media-volume-slider-container&quot;, &quot;media-volume-slider&quot;, &quot;media-volume-sliderthumb&quot;, &quot;media-volume-slider-mute-button&quot;, &quot;media-
 controls-background&quot;, &quot;media-controls-fullscreen-background&quot;, &quot;media-current-time-display&quot;, &quot;media-time-remaining-display&quot;, &quot;menulist&quot;, &quot;menulist-button&quot;, &quot;menulist-text&quot;, &quot;menulist-textfield&quot;, &quot;meter&quot;, &quot;progress-bar&quot;, &quot;progress-bar-value&quot;, &quot;slider-horizontal&quot;, &quot;slider-vertical&quot;, &quot;sliderthumb-horizontal&quot;, &quot;sliderthumb-vertical&quot;, &quot;caret&quot;, &quot;searchfield&quot;, &quot;searchfield-decoration&quot;, &quot;searchfield-results-decoration&quot;, &quot;searchfield-results-button&quot;, &quot;searchfield-cancel-button&quot;, &quot;snapshotted-plugin-overlay&quot;, &quot;textfield&quot;, &quot;relevancy-level-indicator&quot;, &quot;continuous-capacity-level-indicator&quot;, &quot;discrete-capacity-level-indicator&quot;, &quot;rating-level-indicator&quot;, &quot;textarea&quot;
</del><ins>+        &quot;none&quot;, &quot;checkbox&quot;, &quot;radio&quot;, &quot;push-button&quot;, &quot;square-button&quot;, &quot;button&quot;, &quot;button-bevel&quot;, &quot;default-button&quot;, &quot;inner-spin-button&quot;, &quot;listbox&quot;, &quot;listitem&quot;, &quot;media-enter-fullscreen-button&quot;, &quot;media-exit-fullscreen-button&quot;, &quot;media-fullscreen-volume-slider&quot;, &quot;media-fullscreen-volume-slider-thumb&quot;, &quot;media-mute-button&quot;, &quot;media-play-button&quot;, &quot;media-overlay-play-button&quot;, &quot;media-seek-back-button&quot;, &quot;media-seek-forward-button&quot;, &quot;media-rewind-button&quot;, &quot;media-return-to-realtime-button&quot;, &quot;media-toggle-closed-captions-button&quot;, &quot;media-slider&quot;, &quot;media-sliderthumb&quot;, &quot;media-volume-slider-container&quot;, &quot;media-volume-slider&quot;, &quot;media-volume-sliderthumb&quot;, &quot;media-volume-slider-mute-button&quot;, &quot;media-c
 ontrols-background&quot;, &quot;media-controls-fullscreen-background&quot;, &quot;media-current-time-display&quot;, &quot;media-time-remaining-display&quot;, &quot;menulist&quot;, &quot;menulist-button&quot;, &quot;menulist-text&quot;, &quot;menulist-textfield&quot;, &quot;meter&quot;, &quot;progress-bar&quot;, &quot;progress-bar-value&quot;, &quot;slider-horizontal&quot;, &quot;slider-vertical&quot;, &quot;sliderthumb-horizontal&quot;, &quot;sliderthumb-vertical&quot;, &quot;caret&quot;, &quot;searchfield&quot;, &quot;searchfield-decoration&quot;, &quot;searchfield-results-decoration&quot;, &quot;searchfield-results-button&quot;, &quot;searchfield-cancel-button&quot;, &quot;snapshotted-plugin-overlay&quot;, &quot;textfield&quot;, &quot;relevancy-level-indicator&quot;, &quot;continuous-capacity-level-indicator&quot;, &quot;discrete-capacity-level-indicator&quot;, &quot;rating-level-indicator&quot;, &quot;textarea&quot;, &quot;attachment&quot;, &quot;caps-lock-indicator&quot;
</ins><span class="cx">     ],
</span><span class="cx">     */
</span><ins>+    &quot;-webkit-animation-trigger&quot;: [
+        &quot;auto&quot;, &quot;container-scroll()&quot;
+    ],
</ins><span class="cx">     &quot;-webkit-scroll-snap-type&quot;: [
</span><del>-        &quot;mandatory&quot;, &quot;proximity&quot;, &quot;none&quot;
</del><ins>+        &quot;none&quot;, &quot;mandatory&quot;, &quot;proximity&quot;
</ins><span class="cx">     ],
</span><span class="cx">     &quot;-webkit-scroll-snap-points-x&quot;: [
</span><del>-        &quot;elements&quot;, &quot;repeat&quot;
</del><ins>+        &quot;elements&quot;, &quot;repeat()&quot;
</ins><span class="cx">     ],
</span><span class="cx">     &quot;-webkit-scroll-snap-points-y&quot;: [
</span><del>-        &quot;elements&quot;, &quot;repeat&quot;
</del><ins>+        &quot;elements&quot;, &quot;repeat()&quot;
</ins><span class="cx">     ],
</span><ins>+    &quot;-webkit-scroll-snap-destination&quot;: [
+        &quot;none&quot;, &quot;left&quot;, &quot;right&quot;, &quot;bottom&quot;, &quot;top&quot;, &quot;center&quot;
+    ],
</ins><span class="cx">     &quot;-webkit-scroll-snap-coordinate&quot;: [
</span><del>-        &quot;none&quot;
</del><ins>+        &quot;none&quot;, &quot;left&quot;, &quot;right&quot;, &quot;bottom&quot;, &quot;top&quot;, &quot;center&quot;
</ins><span class="cx">     ],
</span><span class="cx"> 
</span><span class="cx">     // iOS Properties
</span></span></pre>
</div>
</div>

</body>
</html>