summaryrefslogtreecommitdiff
path: root/spec/features/markdown
diff options
context:
space:
mode:
authorCindy Pallares <cindy@gitlab.com>2018-11-28 18:39:27 +0000
committerCindy Pallares <cindy@gitlab.com>2018-11-28 19:09:28 -0500
commitc4bb0a116efb8d95dcf7edd92424795ea919660f (patch)
treef9ff00b504186b09cc92891319f3b69eb4255059 /spec/features/markdown
parente3a5ce58bbd288063c705c57f2e7b3fcdf2b4a3b (diff)
downloadgitlab-ce-c4bb0a116efb8d95dcf7edd92424795ea919660f.tar.gz
Merge branch 'security-mermaid-xss' into 'master'
[master] Fix XSS in mermaid diagrams See merge request gitlab/gitlabhq!2597
Diffstat (limited to 'spec/features/markdown')
-rw-r--r--spec/features/markdown/mermaid_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/markdown/mermaid_spec.rb b/spec/features/markdown/mermaid_spec.rb
index a25d701ee35..7008b361394 100644
--- a/spec/features/markdown/mermaid_spec.rb
+++ b/spec/features/markdown/mermaid_spec.rb
@@ -18,7 +18,7 @@ describe 'Mermaid rendering', :js do
visit project_issue_path(project, issue)
%w[A B C D].each do |label|
- expect(page).to have_selector('svg foreignObject', text: label)
+ expect(page).to have_selector('svg text', text: label)
end
end
end