diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-09-05 08:36:35 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-09-05 18:33:10 +0200 |
commit | c9ce96ff054788f31d45d774dcfa008c0de095c5 (patch) | |
tree | 183edb1054ea723afc4d326657c871401cfac243 /apps/comments/tests | |
parent | bcaf9a48bb08c3dd0e3294705c4e888f51d49d58 (diff) | |
download | nextcloud-server-c9ce96ff054788f31d45d774dcfa008c0de095c5.tar.gz nextcloud-server-c9ce96ff054788f31d45d774dcfa008c0de095c5.zip |
Show avatar using "span" instead of "div"
Visually it makes no difference, but as the ".avatar" element is inside
a "span" element it can not be a block element to be compliant with the
HTML specification.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/comments/tests')
-rw-r--r-- | apps/comments/tests/js/commentstabviewSpec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/tests/js/commentstabviewSpec.js b/apps/comments/tests/js/commentstabviewSpec.js index c90ad04e419..bd1353cc43d 100644 --- a/apps/comments/tests/js/commentstabviewSpec.js +++ b/apps/comments/tests/js/commentstabviewSpec.js @@ -309,7 +309,7 @@ describe('OCA.Comments.CommentsTabView tests', function() { expect(createStub.calledOnce).toEqual(false); expect($newCommentForm.find('.message').html()).toContain('Mention to <span'); - expect($newCommentForm.find('.message').html()).toContain('<div class="avatar"'); + expect($newCommentForm.find('.message').html()).toContain('<span class="avatar"'); expect($newCommentForm.find('.message').html()).toContain('<strong>User Name</strong>'); expect($newCommentForm.find('.message').text()).not.toContain('@'); // In this case the default behaviour is prevented by the |