Title: [235406] trunk/Source/WebInspectorUI
Revision
235406
Author
aes...@apple.com
Date
2018-08-27 15:25:26 -0700 (Mon, 27 Aug 2018)

Log Message

Teach Web Inspector how to complete keywords for -apple-pay-button-style and -apple-pay-button-type
https://bugs.webkit.org/show_bug.cgi?id=189001

Reviewed by Devin Rousso.

* UserInterface/Models/CSSKeywordCompletions.js:

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (235405 => 235406)


--- trunk/Source/WebInspectorUI/ChangeLog	2018-08-27 22:23:03 UTC (rev 235405)
+++ trunk/Source/WebInspectorUI/ChangeLog	2018-08-27 22:25:26 UTC (rev 235406)
@@ -1,3 +1,12 @@
+2018-08-27  Andy Estes  <aes...@apple.com>
+
+        Teach Web Inspector how to complete keywords for -apple-pay-button-style and -apple-pay-button-type
+        https://bugs.webkit.org/show_bug.cgi?id=189001
+
+        Reviewed by Devin Rousso.
+
+        * UserInterface/Models/CSSKeywordCompletions.js:
+
 2018-08-27  Devin Rousso  <drou...@apple.com>
 
         Web Inspector: when scrolling a virtualized TreeOutline, only update the DOM periodically

Modified: trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js (235405 => 235406)


--- trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2018-08-27 22:23:03 UTC (rev 235405)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2018-08-27 22:25:26 UTC (rev 235406)
@@ -1056,5 +1056,13 @@
     ],
     "-webkit-overflow-scrolling": [
         "auto", "touch"
+    ],
+
+    // Apple Pay Properties
+    "-apple-pay-button-style": [
+        "black", "white", "white-outline"
+    ],
+    "-apple-pay-button-type": [
+        "book", "buy", "checkout", "donate", "in-store", "plain", "set-up", "subscribe"
     ]
 };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to