File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,13 @@ protected Content toContent(boolean hasFilterInput) {
110
110
.add (HtmlTree .SPAN (writer .contents .hideSidebar ).add (Entity .NO_BREAK_SPACE ))
111
111
.add (HtmlTree .of (HtmlTag .IMG )
112
112
.put (HtmlAttr .SRC , writer .pathToRoot .resolve (DocPaths .RESOURCE_FILES )
113
- .resolve (DocPaths .LEFT_SVG ).getPath ())));
113
+ .resolve (DocPaths .LEFT_SVG ).getPath ())
114
+ .put (HtmlAttr .ALT , writer .contents .hideSidebar .toString ())));
114
115
content .add (HtmlTree .BUTTON (HtmlStyles .showSidebar )
115
116
.add (HtmlTree .of (HtmlTag .IMG )
116
117
.put (HtmlAttr .SRC , writer .pathToRoot .resolve (DocPaths .RESOURCE_FILES )
117
- .resolve (DocPaths .RIGHT_SVG ).getPath ()))
118
+ .resolve (DocPaths .RIGHT_SVG ).getPath ())
119
+ .put (HtmlAttr .ALT , writer .contents .showSidebar .toString ()))
118
120
.add (HtmlTree .SPAN (Entity .NO_BREAK_SPACE ).add (writer .contents .showSidebar )));
119
121
return content ;
120
122
}
You can’t perform that action at this time.
0 commit comments