Changeset 237238 in webkit


Ignore:
Timestamp:
Oct 17, 2018 4:10:33 PM (6 years ago)
Author:
aestes@apple.com
Message:

[Apple Pay] Increment the API version to 5
https://bugs.webkit.org/show_bug.cgi?id=190686
<rdar://problem/45348523>

Reviewed by Simon Fraser.

Source/WebCore:

Test: http/tests/ssl/applepay/ApplePaySessionV5.html

  • testing/MockPaymentCoordinator.cpp:

(WebCore::MockPaymentCoordinator::supportsVersion):

Source/WebKit:

  • WebProcess/ApplePay/WebPaymentCoordinator.cpp:

(WebKit::WebPaymentCoordinator::supportsVersion):

LayoutTests:

  • http/tests/ssl/applepay/ApplePaySessionV5-expected.txt: Added.
  • http/tests/ssl/applepay/ApplePaySessionV5.html: Added.
  • platform/mac-wk2/TestExpectations:
Location:
trunk
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r237225 r237238  
     12018-10-17  Andy Estes  <aestes@apple.com>
     2
     3        [Apple Pay] Increment the API version to 5
     4        https://bugs.webkit.org/show_bug.cgi?id=190686
     5        <rdar://problem/45348523>
     6
     7        Reviewed by Simon Fraser.
     8
     9        * http/tests/ssl/applepay/ApplePaySessionV5-expected.txt: Added.
     10        * http/tests/ssl/applepay/ApplePaySessionV5.html: Added.
     11        * platform/mac-wk2/TestExpectations:
     12
    1132018-10-17  Chris Fleizach  <cfleizach@apple.com>
    214
  • trunk/LayoutTests/platform/mac-wk2/TestExpectations

    r237072 r237238  
    2727[ Sierra ] http/tests/ssl/applepay/ApplePaySessionV3.html [ Skip ]
    2828[ Sierra ] http/tests/ssl/applepay/ApplePaySessionV4.html [ Skip ]
     29[ Sierra ] http/tests/ssl/applepay/ApplePaySessionV5.html [ Skip ]
    2930[ Sierra ] http/tests/ssl/applepay/ApplePayRequestShippingContactV3.https.html [ Skip ]
    3031[ Sierra ] http/tests/ssl/applepay/ApplePayShippingAddressChangeEventErrorsV3.https.html [ Skip ]
    3132[ HighSierra ] http/tests/ssl/applepay/ApplePayButtonV4.html [ Skip ]
    3233[ HighSierra ] http/tests/ssl/applepay/ApplePaySessionV4.html [ Skip ]
     34[ HighSierra ] http/tests/ssl/applepay/ApplePaySessionV5.html [ Skip ]
    3335
    3436fast/visual-viewport/rubberbanding-viewport-rects.html [ Pass ]
     
    756758[ HighSierra+ ] http/tests/ssl/applepay/ApplePaySessionV3.html [ Pass ]
    757759[ Mojave+ ] http/tests/ssl/applepay/ApplePaySessionV4.html [ Pass ]
     760[ Mojave+ ] http/tests/ssl/applepay/ApplePaySessionV5.html [ Pass ]
    758761[ HighSierra+ ] http/tests/ssl/applepay/ApplePayRequestShippingContactV3.https.html [ Pass ]
    759762[ HighSierra+ ] http/tests/ssl/applepay/ApplePayShippingAddressChangeEventErrorsV3.https.html [ Pass ]
  • trunk/Source/WebCore/ChangeLog

    r237236 r237238  
     12018-10-17  Andy Estes  <aestes@apple.com>
     2
     3        [Apple Pay] Increment the API version to 5
     4        https://bugs.webkit.org/show_bug.cgi?id=190686
     5        <rdar://problem/45348523>
     6
     7        Reviewed by Simon Fraser.
     8
     9        Test: http/tests/ssl/applepay/ApplePaySessionV5.html
     10
     11        * testing/MockPaymentCoordinator.cpp:
     12        (WebCore::MockPaymentCoordinator::supportsVersion):
     13
    1142018-10-17  Eric Carlson  <eric.carlson@apple.com>
    215
  • trunk/Source/WebCore/testing/MockPaymentCoordinator.cpp

    r237142 r237238  
    6262    static const unsigned currentVersion = 3;
    6363#else
    64     static const unsigned currentVersion = 4;
     64    static const unsigned currentVersion = 5;
    6565#endif
    6666
  • trunk/Source/WebKit/ChangeLog

    r237233 r237238  
     12018-10-17  Andy Estes  <aestes@apple.com>
     2
     3        [Apple Pay] Increment the API version to 5
     4        https://bugs.webkit.org/show_bug.cgi?id=190686
     5        <rdar://problem/45348523>
     6
     7        Reviewed by Simon Fraser.
     8
     9        * WebProcess/ApplePay/WebPaymentCoordinator.cpp:
     10        (WebKit::WebPaymentCoordinator::supportsVersion):
     11
    1122018-10-17  Alex Christensen  <achristensen@webkit.org>
    213
  • trunk/Source/WebKit/WebProcess/ApplePay/WebPaymentCoordinator.cpp

    r235251 r237238  
    6161    static const unsigned currentVersion = 3;
    6262#else
    63     static const unsigned currentVersion = 4;
     63    static const unsigned currentVersion = 5;
    6464#endif
    6565
Note: See TracChangeset for help on using the changeset viewer.