fix: make border radius challenge Firefox compatible (#35009)

* fix: make border radius challenge Firefox compatible

* fix: make border radius challenge Firefox compatible mk2
This commit is contained in:
Oliver Eyton-Williams
2019-02-16 18:17:11 +01:00
committed by Stuart Taylor
parent cf0ebc2846
commit ba9e45023d

View File

@ -25,7 +25,7 @@ tests:
- text: Your image element should have the class "thick-green-border".
testString: assert($("img").hasClass("thick-green-border"), 'Your image element should have the class "thick-green-border".');
- text: Your image should have a border radius of <code>10px</code>
testString: assert($("img").css("border-radius") === '10px', 'Your image should have a border radius of <code>10px</code>');
testString: assert($("img").css("border-top-left-radius") === '10px' && $("img").css("border-top-right-radius") === '10px' && $("img").css("border-bottom-left-radius") === '10px' && $("img").css("border-bottom-right-radius") === '10px', 'Your image should have a border radius of <code>10px</code>');
```