Title: [200154] trunk/Source/WebInspectorUI
Revision
200154
Author
[email protected]
Date
2016-04-27 15:48:23 -0700 (Wed, 27 Apr 2016)

Log Message

Web Inspector: Missing CSS autocompletion suggestions for -webkit-user-select
https://bugs.webkit.org/show_bug.cgi?id=157104

Patch by Joseph Pecoraro <[email protected]> on 2016-04-27
Reviewed by Timothy Hatcher.

* UserInterface/Models/CSSKeywordCompletions.js:

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (200153 => 200154)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-04-27 22:36:41 UTC (rev 200153)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-04-27 22:48:23 UTC (rev 200154)
@@ -1,3 +1,12 @@
+2016-04-27  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Missing CSS autocompletion suggestions for -webkit-user-select
+        https://bugs.webkit.org/show_bug.cgi?id=157104
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Models/CSSKeywordCompletions.js:
+
 2016-04-26  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Clarify Heap Snapshot instance Retained Size by hiding retained size of non-dominated children

Modified: trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js (200153 => 200154)


--- trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2016-04-27 22:36:41 UTC (rev 200153)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2016-04-27 22:48:23 UTC (rev 200154)
@@ -908,6 +908,9 @@
     "-webkit-user-modify": [
         "read-only", "read-write", "read-write-plaintext-only"
     ],
+    "-webkit-user-select": [
+        "auto", "none", "text", "all"
+    ],
     "-webkit-text-stroke-width": [
         "medium", "thick", "thin", "calc()", "-webkit-calc()"
     ],
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to