From e780eeee27f468bed0a339cf6fbb74cadf7a76fe Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Fri, 24 Oct 2014 03:35:34 +0300 Subject: [PATCH] test(ngSanitize): enhance test regarding the `xlink:href` attribute Closes #9770 --- test/ngSanitize/sanitizeSpec.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/ngSanitize/sanitizeSpec.js b/test/ngSanitize/sanitizeSpec.js index cfbd2394..69eb8a9f 100644 --- a/test/ngSanitize/sanitizeSpec.js +++ b/test/ngSanitize/sanitizeSpec.js @@ -246,6 +246,15 @@ describe('HTML', function() { it('should sanitize SVG xmlns:xlink attribute values', function() { expectHTML('') .toEqual(''); + + expectHTML('') + .toEqual(''); + + expectHTML('') + .toEqual(''); + + expectHTML('') + .toEqual(''); }); describe('htmlSanitizerWriter', function() {