You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2014/03/14 20:58:44 UTC

[Bug 56265] Unexpected escaping in the values of dynamic tag attributes containing EL expressions

https://issues.apache.org/bugzilla/show_bug.cgi?id=56265

--- Comment #1 from Konstantin Kolinko <kn...@gmail.com> ---
Created attachment 31388
  --> https://issues.apache.org/bugzilla/attachment.cgi?id=31388&action=edit
test.war

A simple web application that reproduces this issue.

Steps to reproduce on 7.0.52:
1. Deploy
2. Access http://localhost:8080/test/
3.
Actual:
---
[data-test]: [window.alert(&#039;Hello 'World'!&#039;)]
[data-test2]: [window.alert('Hello World!')]
---
Expected:
The following rows, in any order:
---
[data-test]: [window.alert('Hello 'World'!')]
[data-test2]: [window.alert('Hello World!')]
---

Tomcat 7.0.42 does not have this issue, produces the "Expected" output.

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org