| Index: third_party/WebKit/LayoutTests/payments/payment-request-interface.html
|
| diff --git a/third_party/WebKit/LayoutTests/payments/payment-request-interface.html b/third_party/WebKit/LayoutTests/payments/payment-request-interface.html
|
| index 670f291bc40cd0322cd2fb8281e56c03f1d4e48f..d1c6c7d1639e78cc87939899dfffc5c3e2b11fdd 100644
|
| --- a/third_party/WebKit/LayoutTests/payments/payment-request-interface.html
|
| +++ b/third_party/WebKit/LayoutTests/payments/payment-request-interface.html
|
| @@ -275,24 +275,6 @@ var detailNames = ['total', 'displayItems.0', 'shippingOptions.0', 'modifiers.0.
|
| for (var i in detailNames) {
|
| generate_tests(assert_throws, [
|
| // Invalid currency code formats.
|
| - ['Invalid currency code US1 should throw', null, function() {
|
| - new PaymentRequest([{'supportedMethods': ['foo']}], buildDetails(detailNames[i], {'currency': 'US1'}))
|
| - }],
|
| - ['Invalid currency code US should throw', null, function() {
|
| - new PaymentRequest([{'supportedMethods': ['foo']}], buildDetails(detailNames[i], {'currency': 'US'}))
|
| - }],
|
| - ['Invalid currency code USDO should throw', null, function() {
|
| - new PaymentRequest([{'supportedMethods': ['foo']}], buildDetails(detailNames[i], {'currency': 'USDO'}))
|
| - }],
|
| - ['Invalid currency code usd should throw', null, function() {
|
| - new PaymentRequest([{'supportedMethods': ['foo']}], buildDetails(detailNames[i], {'currency': 'usd'}))
|
| - }],
|
| - ['Empty currency code should throw', null, function() {
|
| - new PaymentRequest([{'supportedMethods': ['foo']}], buildDetails(detailNames[i], {'currency': ''}))
|
| - }],
|
| - ['Null currency code should throw', null, function() {
|
| - new PaymentRequest([{'supportedMethods': ['foo']}], buildDetails(detailNames[i], {'currency': null}))
|
| - }],
|
| ['Undefined currency code should throw', null, function() {
|
| new PaymentRequest([{'supportedMethods': ['foo']}], buildDetails(detailNames[i], {'currency': undefined}))
|
| }],
|
|
|