File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
test/langtools/jdk/javadoc/doclet/testJavaFX Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+ * Copyright (c) 2018, 2022, 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
@@ -77,13 +77,16 @@ public void test(Path base) throws Exception {
7777 checkExit (Exit .OK );
7878 checkOrder ("pkg/A.html" ,
7979 "Property Summary" ,
80- "javafx.beans.property.Property" , "<a href=\" #propProperty\" >prop</a>" ,
80+ """
81+ <a href="#propProperty" class="member-name-link">prop</a>""" ,
8182 "Field Summary" ,
82- "javafx.beans.property.Property" , "<a href=\" #prop\" >prop</a></span>" ,
83+ """
84+ <a href="#prop" class="member-name-link">prop</a>""" ,
8385 "Method Summary" ,
84- "<a href=\" #getProp()\" >getProp</a>" , "Gets the value of the property prop." ,
8586 """
86- <a href="#propProperty()">propProperty</a>""" , "Sets the value of the property prop." );
87+ <a href="#getProp()" class="member-name-link">getProp</a>""" ,
88+ """
89+ <a href="#propProperty()" class="member-name-link">propProperty</a>""" );
8790 }
8891
8992 void createTestClass (Path src ) throws Exception {
You can’t perform that action at this time.
0 commit comments