Add javascript alert onclick handler to Raw example (#82) Makes for fun XSS testing.
Markus Wüstenberg markus@maragu.dk
Wed, 09 Jun 2021 10:56:22 +0200
1 files changed, 4 insertions(+), 2 deletions(-)
jump to
M gomponents_test.go → gomponents_test.go
@@ -205,9 +205,11 @@ }) } func ExampleRaw() { - e := g.El("span", g.Raw("<strong>Party</strong> hats > normal hats.")) + e := g.El("span", + g.Raw(`<button onclick="javascript:alert('Party time!')">Party hats</button> > normal hats.`), + ) _ = e.Render(os.Stdout) - // Output: <span><strong>Party</strong> hats > normal hats.</span> + // Output: <span><button onclick="javascript:alert('Party time!')">Party hats</button> > normal hats.</span> } func TestGroup(t *testing.T) {