Lines Matching refs:alt
1275 constructor(src, alt, style) { argument
1277 this.alt = void 0;
1283 this.alt = alt;
1296 node.alt = this.alt;
1310 let markup = `<img src='${this.src} 'alt='${this.alt}' `; // Add the styles, after hyphenation
11414 let alt = "";
11428 case "alt":
11429 alt = str;
11453 if (alt === "") {
11454 // No alt given. Use the file name. Strip away the path.
11455 alt = src;
11456 alt = alt.replace(/^.*[\\/]/, '');
11457 alt = alt.substring(0, alt.lastIndexOf('.'));
11470 alt: alt,
11504 const node = new Img(group.src, group.alt, style);
11511 node.setAttribute("alt", group.alt);