Skip to content

Commit 97367c0

Browse files
committedMay 12, 2021
8266808: Search label still uses old search field id
Reviewed-by: prappo
1 parent 06d7602 commit 97367c0

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/Navigation.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -558,11 +558,12 @@ private void addHelpLink(Content tree) {
558558
}
559559

560560
private void addSearch(Content tree) {
561-
String searchValueId = "search";
561+
String search = "search";
562562
String reset = "reset";
563-
HtmlTree inputText = HtmlTree.INPUT("text", HtmlIds.SEARCH_INPUT, searchValueId);
563+
HtmlTree inputText = HtmlTree.INPUT("text", HtmlIds.SEARCH_INPUT, search);
564564
HtmlTree inputReset = HtmlTree.INPUT(reset, HtmlIds.RESET_BUTTON, reset);
565-
HtmlTree searchDiv = HtmlTree.DIV(HtmlStyle.navListSearch, HtmlTree.LABEL(searchValueId, searchLabel));
565+
HtmlTree searchDiv = HtmlTree.DIV(HtmlStyle.navListSearch,
566+
HtmlTree.LABEL(HtmlIds.SEARCH_INPUT.name(), searchLabel));
566567
searchDiv.add(inputText);
567568
searchDiv.add(inputReset);
568569
tree.add(searchDiv);

‎test/langtools/jdk/javadoc/doclet/testSearch/TestSearch.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,6 +26,7 @@
2626
* @bug 8141492 8071982 8141636 8147890 8166175 8168965 8176794 8175218 8147881
2727
* 8181622 8182263 8074407 8187521 8198522 8182765 8199278 8196201 8196202
2828
* 8184205 8214468 8222548 8223378 8234746 8241219 8254627 8247994 8263528
29+
* 8266808
2930
* @summary Test the search feature of javadoc.
3031
* @library ../../lib
3132
* @modules jdk.javadoc/jdk.javadoc.internal.tool
@@ -419,7 +420,7 @@ void checkSearchOutput(String fileName, boolean expectedOutput, boolean moduleDi
419420
loadScripts(document, 'script');""",
420421
"<div class=\"nav-list-search\">",
421422
"""
422-
<label for="search">SEARCH:</label>
423+
<label for="search-input">SEARCH:</label>
423424
<input type="text" id="search-input" value="search" disabled="disabled">
424425
<input type="reset" id="reset-button" value="reset" disabled="disabled">
425426
""");

0 commit comments

Comments
 (0)
Please sign in to comment.