@@ -24,10 +24,13 @@ pub trait T {
24
24
// @has - '//*[@class="docblock"]' 'Docs associated with the S1 trait implementation.'
25
25
// @has - '//*[@class="docblock"]' 'Docs associated with the S1 trait a_method implementation.'
26
26
// @!has - '//*[@class="docblock"]' 'Docs associated with the trait a_method definition.'
27
- // @has - '//*[@class="docblock hidden"]' 'Docs associated with the trait b_method definition.'
28
- // @has - '//*[@class="docblock hidden"]' 'Docs associated with the trait c_method definition.'
27
+ // @!has - '//div[@class="impl-items"]/details[@open=""]//div[@class="docblock"]' 'Docs associated with the trait b_method definition.'
28
+ // @has - '//div[@class="impl-items"]/details//div[@class="docblock"]' 'Docs associated with the trait b_method definition.'
29
+ // @!has - '//div[@class="impl-items"]/details[@open=""]//div[@class="docblock"]' 'Docs associated with the trait c_method definition.'
30
+ // @has - '//div[@class="impl-items"]/details//div[@class="docblock"]' 'Docs associated with the trait c_method definition.'
29
31
// @!has - '//*[@class="docblock"]' 'There is another line'
30
- // @has - '//*[@class="docblock hidden"]' 'Read more'
32
+ // @!has - '//div[@class="impl-items"]/details[@open=""]//div[@class="docblock"]' 'Read more'
33
+ // @has - '//div[@class="impl-items"]/details//div[@class="docblock"]' 'Read more'
31
34
pub struct S1 ( usize ) ;
32
35
33
36
/// Docs associated with the S1 trait implementation.
@@ -42,9 +45,10 @@ impl T for S1 {
42
45
// @has - '//*[@class="docblock"]' 'Docs associated with the S2 trait implementation.'
43
46
// @has - '//*[@class="docblock"]' 'Docs associated with the S2 trait a_method implementation.'
44
47
// @has - '//*[@class="docblock"]' 'Docs associated with the S2 trait c_method implementation.'
45
- // @!has - '//*[@class="docblock"]' 'Docs associated with the trait a_method definition.'
46
- // @!has - '//*[@class="docblock"]' 'Docs associated with the trait c_method definition.'
47
- // @has - '//*[@class="docblock hidden"]' 'Docs associated with the trait b_method definition.'
48
+ // @!has - '//details[open=""]/div[@class="docblock"]' 'Docs associated with the trait a_method definition.'
49
+ // @!has - '//details[open=""]/div[@class="docblock"]' 'Docs associated with the trait c_method definition.'
50
+ // @!has - '//div[@class="impl-items"]/details[@open=""]//div[@class="docblock"]' 'Docs associated with the trait b_method definition.'
51
+ // @has - '//div[@class="impl-items"]/details//div[@class="docblock"]' 'Docs associated with the trait b_method definition.'
48
52
pub struct S2 ( usize ) ;
49
53
50
54
/// Docs associated with the S2 trait implementation.
@@ -61,9 +65,10 @@ impl T for S2 {
61
65
}
62
66
63
67
// @has manual_impl/struct.S3.html '//*[@class="trait"]' 'T'
64
- // @has - '//*[@class="docblock"]' 'Docs associated with the S3 trait implementation.'
65
- // @has - '//*[@class="docblock"]' 'Docs associated with the S3 trait b_method implementation.'
66
- // @has - '//*[@class="docblock hidden"]' 'Docs associated with the trait a_method definition.'
68
+ // @has - '//details[@open=""]/div[@class="docblock"]' 'Docs associated with the S3 trait implementation.'
69
+ // @has - '//details[@open=""]/div[@class="docblock"]' 'Docs associated with the S3 trait b_method implementation.'
70
+ // @!has - '//div[@class="impl-items"]/details[@open=""]//div[@class="docblock"]' 'Docs associated with the trait a_method definition.'
71
+ // @has - '//div[@class="impl-items"]/details//div[@class="docblock"]' 'Docs associated with the trait a_method definition.'
67
72
pub struct S3 ( usize ) ;
68
73
69
74
/// Docs associated with the S3 trait implementation.
0 commit comments