mirror of
https://github.com/github/codeql.git
synced 2026-02-13 21:51:29 +01:00
24 lines
871 B
HTML
24 lines
871 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<h1>OK</h1>
|
|
<a href="http://example.com" target="_blank" rel="noopener noreferrer">Example</a>
|
|
<a href="http://example.com" target="_blank" rel="noreferrer">Example</a>
|
|
<a href="http://example.com" target="_blank" rel="noopener">Example</a>
|
|
<a data-ng-href="https://example.com" target="_blank" rel="noopener">Example</a>
|
|
|
|
<h1>OK, because of constant URL</h1>
|
|
<a href="http://example.com" target="_blank">Example</a>
|
|
<a href="http://example.com" target="_blank" rel="nopoener">Example</a>
|
|
<a data-ng-href="https://example.com" target="_blank">Example</a>
|
|
|
|
<h1>NOT OK, because of dynamic URL</h1>
|
|
<a href="http://example.com/{{X}}" target="_blank">Example</a>
|
|
<a href="http://example.com/{{X}}" target="_blank" rel="nopoener">Example</a>
|
|
<a data-ng-href="https://example.com/{{X}}" target="_blank">Example</a>
|
|
|
|
</body>
|
|
</html>
|