Files
codeql/javascript/ql/test/library-tests/DOM/tst.jsx
2018-08-02 17:53:23 +01:00

6 lines
194 B
JavaScript

(function() {
let otherAttrs = { target: "_blank" };
let rel = "noopener";
let a = <a href="https://semmle.com" rel={rel} {...otherAttrs}>Semmle</a>;
a.rel = "noreferrer noopener";
})();