From 9bc504e4121eb32e8bee092bcbc81256fb0a1724 Mon Sep 17 00:00:00 2001 From: chriscampbell32 Date: Sun, 29 Nov 2015 13:04:00 -0500 Subject: [PATCH] added that this does not work in safari. added that this does not work in safari in description added period. --- challenges/html5-and-css.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/challenges/html5-and-css.json b/challenges/html5-and-css.json index 0306ca9a77..88c5479067 100644 --- a/challenges/html5-and-css.json +++ b/challenges/html5-and-css.json @@ -2095,7 +2095,8 @@ "You can require specific form fields so that your user will not be able to submit your form until he or she has filled them out.", "For example, if you wanted to make a text input field required, you can just add the word required within your input element, you would use: <input type=\"text\" required>", "Make your text input a required field, so that your user can't submit the form without completing this field.", - "Then try to submit the form without inputing any text. See how your HTML5 form notifies you that the field is required?" + "Then try to submit the form without inputing any text. See how your HTML5 form notifies you that the field is required?", + "Note: This field does not work in Safari." ], "tests": [ "assert($(\"input\").prop(\"required\"), 'Your text input element should have the required attribute.')"