mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
21 lines
639 B
HTML
21 lines
639 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Document</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<a href=" javascript: alert( 'test' ) ">a</a>
|
||
|
<a href=" JAVASCRIPT: alert( 'test' ) ">b</a>
|
||
|
<iframe src="javascript: alert( 'test' ) " frameborder="0"></iframe>
|
||
|
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
||
|
<!-- A link around a shape -->
|
||
|
<a href="javascript: alert( 'test' ) ">
|
||
|
<circle cx="50" cy="40" r="35" />
|
||
|
</a>
|
||
|
<!-- A link around a text -->
|
||
|
<a href=" javascript: alert( 'test' ) ">
|
||
|
<text x="50" y="90" text-anchor="middle"><circle></text>
|
||
|
</a>
|
||
|
</svg>
|
||
|
</body>
|
||
|
</html>
|