Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-07 00:11:21 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-07 00:11:21 +0300
commit09fd08f7e5db4514ce82223ab9a28ed8f823fb17 (patch)
tree764e4805ad6874358f26426c1e66611e0b377a87 /spec/features/markdown
parent33998a0e768263828f497685ae030f585193317f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/markdown')
-rw-r--r--spec/features/markdown/markdown_spec.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/features/markdown/markdown_spec.rb b/spec/features/markdown/markdown_spec.rb
index 132a03877f8..6e62aa892bb 100644
--- a/spec/features/markdown/markdown_spec.rb
+++ b/spec/features/markdown/markdown_spec.rb
@@ -296,6 +296,11 @@ RSpec.describe 'GitLab Markdown', :aggregate_failures, feature_category: :team_p
expect(img.attr('width')).to eq('75%')
expect(img.attr('height')).to eq('100')
+
+ vid = doc.at_css('video[data-title="Sized Video"]')
+
+ expect(vid.attr('width')).to eq('75%')
+ expect(vid.attr('height')).to eq('100')
end
end
end