Lines Matching refs:link
24 This is a test case for String.prototype.link(href).
29 PASS '_'.link('"') is "<a href=\""\">_</a>"
30 PASS '_'.link('b') is "<a href=\"b\">_</a>"
31 PASS '<'.link('b') is "<a href=\"b\"><</a>"
32 PASS '_'.link(0x2A) is "<a href=\"42\">_</a>"
33 PASS '_'.link('"') is "<a href=\""\">_</a>"
34 PASS '_'.link('" target="_blank') is "<a href=\"" target="_blank\">_</a>"
35 PASS String.prototype.link.call(0x2A, 0x2A) is "<a href=\"42\">42</a>"
36 FAIL String.prototype.link.call(undefined) should throw TypeError: Type error. Threw exception Type…
37 FAIL String.prototype.link.call(null) should throw TypeError: Type error. Threw exception TypeError…
38 PASS String.prototype.link.length is 1