Title: [235801] branches/safari-606-branch/Source/WebInspectorUI
Revision
235801
Author
[email protected]
Date
2018-09-07 13:08:16 -0700 (Fri, 07 Sep 2018)

Log Message

Cherry-pick r235406. rdar://problem/44210305

    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:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@235406 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-606-branch/Source/WebInspectorUI/ChangeLog (235800 => 235801)


--- branches/safari-606-branch/Source/WebInspectorUI/ChangeLog	2018-09-07 20:08:14 UTC (rev 235800)
+++ branches/safari-606-branch/Source/WebInspectorUI/ChangeLog	2018-09-07 20:08:16 UTC (rev 235801)
@@ -1,3 +1,26 @@
+2018-09-06  Babak Shafiei  <[email protected]>
+
+        Cherry-pick r235406. rdar://problem/44210305
+
+    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:
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@235406 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2018-08-27  Andy Estes  <[email protected]>
+
+            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-07-31  Babak Shafiei  <[email protected]>
 
         Cherry-pick r234394. rdar://problem/42802129

Modified: branches/safari-606-branch/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js (235800 => 235801)


--- branches/safari-606-branch/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2018-09-07 20:08:14 UTC (rev 235800)
+++ branches/safari-606-branch/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2018-09-07 20:08:16 UTC (rev 235801)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to