8 lines
263 B
Plaintext
8 lines
263 B
Plaintext
|
package testahref
|
||
|
|
||
|
templ render() {
|
||
|
<a href="javascript:alert('unaffected');">Ignored</a>
|
||
|
<a href={ templ.URL("javascript:alert('should be sanitized')") }>Sanitized</a>
|
||
|
<a href={ templ.SafeURL("javascript:alert('should not be sanitized')") }>Unsanitized</a>
|
||
|
}
|