summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-gui/font-weight.goml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/rustdoc-gui/font-weight.goml
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/rustdoc-gui/font-weight.goml')
-rw-r--r--src/test/rustdoc-gui/font-weight.goml44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/test/rustdoc-gui/font-weight.goml b/src/test/rustdoc-gui/font-weight.goml
deleted file mode 100644
index 8ba005b0c..000000000
--- a/src/test/rustdoc-gui/font-weight.goml
+++ /dev/null
@@ -1,44 +0,0 @@
-// This test checks that the font weight is correctly applied.
-goto: "file://" + |DOC_PATH| + "/lib2/struct.Foo.html"
-assert-css: ("//*[@class='item-decl']//a[text()='Alias']", {"font-weight": "400"})
-assert-css: (
- "//*[@class='structfield small-section-header']//a[text()='Alias']",
- {"font-weight": "400"},
-)
-assert-css: ("#method\.a_method > .code-header", {"font-weight": "600"})
-assert-css: ("#associatedtype\.X > .code-header", {"font-weight": "600"})
-assert-css: ("#associatedconstant\.Y > .code-header", {"font-weight": "600"})
-
-goto: "file://" + |DOC_PATH| + "/test_docs/type.SomeType.html"
-assert-css: (".top-doc .docblock p", {"font-weight": "400"}, ALL)
-
-goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html"
-assert-css: (".impl-items .method > .code-header", {"font-weight": "600"}, ALL)
-
-goto: "file://" + |DOC_PATH| + "/lib2/trait.Trait.html"
-
-// This is a complex selector, so here's how it works:
-//
-// * //*[@class='item-decl'] — selects element of any tag with classes docblock and item-decl
-// * /pre[@class='rust trait'] — selects immediate child with tag pre and classes rust and trait
-// * /code — selects immediate child with tag code
-// * /a[@class='constant'] — selects immediate child with tag a and class constant
-// * //text() — selects child that is text node
-// * /parent::* — selects immediate parent of the text node (the * means it can be any tag)
-//
-// This uses '/parent::*' as a proxy for the style of the text node.
-// We can't just select the '<a>' because intermediate tags could be added.
-assert-count: (
- "//*[@class='item-decl']/pre[@class='rust trait']/code/a[@class='constant']//text()/parent::*",
- 1,
-)
-assert-css: (
- "//*[@class='item-decl']/pre[@class='rust trait']/code/a[@class='constant']//text()/parent::*",
- {"font-weight": "400"},
-)
-
-assert-count: (".methods .associatedtype", 1)
-assert-css: (".methods .associatedtype", {"font-weight": "600"})
-assert-count: (".methods .constant", 1)
-assert-css: (".methods .constant", {"font-weight": "600"})
-assert-css: (".methods .method > .code-header", {"font-weight": "600"})