Skip to content

Commit 950bc61

Browse files
xiangzhaiRealCLanger
authored andcommitted
8293535: jdk/javadoc/doclet/testJavaFX/TestJavaFxMode.java fail with jfx
Backport-of: dfb9c0663370fc8335caf06ca6f0cb4dac95ce2d
1 parent 37c0fd6 commit 950bc61

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

test/langtools/jdk/javadoc/doclet/testJavaFX/TestJavaFxMode.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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 {

0 commit comments

Comments
 (0)