diff --git a/samples/v1.5/Test/Input.Text.Password.IgnoresMultiline.json b/samples/v1.5/Test/Input.Text.Password.IgnoresMultiline.json new file mode 100644 index 0000000000..6b273a8a96 --- /dev/null +++ b/samples/v1.5/Test/Input.Text.Password.IgnoresMultiline.json @@ -0,0 +1,33 @@ +{ + "type": "AdaptiveCard", + "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", + "version": "1.5", + "body": [ + { + "type": "TextBlock", + "text": "Both Input.Text elements should look the same as multiline is ignored for password", + "wrap": true + }, + { + "type": "Input.Text", + "id": "id0", + "placeholder": "password", + "style": "password", + "label": "Regular Input.Text With Password Style" + }, + { + "type": "Input.Text", + "id": "id1", + "placeholder": "password", + "style": "password", + "label": "Multiline Input.Text With Password Style", + "isMultiline": true + } + ], + "actions": [ + { + "type": "Action.Submit", + "title": "OK" + } + ] +}