-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #95711 - Dylan-DPC:rollup-ujss3oi, r=Dylan-DPC
Rollup of 4 pull requests Successful merges: - #95659 (Rely on #[link] attribute for unwind on Fuchsia.) - #95684 (rustdoc: Fix item info display overflow) - #95693 (interp: pass TyCtxt to Machine methods that do not take InterpCx) - #95699 (fix: Vec leak when capacity is 0) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
11 changed files
with
57 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/ci/docker/host-x86_64/x86_64-gnu-tools/browser-ui-test.version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.8.4 | ||
0.8.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// This test ensures that the "item-info" elements don't overflow. | ||
goto: file://|DOC_PATH|/lib2/struct.LongItemInfo.html | ||
// We set a fixed size so there is no chance of "random" resize. | ||
size: (1200, 870) | ||
// Logically, the "item-decl" and the "item-info" should have the same scroll width. | ||
compare-elements-property: (".docblock.item-decl", ".item-info", ["scrollWidth"]) | ||
assert-property: (".item-info", {"scrollWidth": "890"}) | ||
// Just to be sure we're comparing the correct "item-info": | ||
assert-text: ( | ||
".item-info", | ||
"This is supported on Android or Linux or Emscripten or DragonFly BSD", | ||
STARTS_WITH, | ||
) | ||
|
||
// Checking the "item-info" on an impl block as well: | ||
goto: file://|DOC_PATH|/lib2/struct.LongItemInfo2.html | ||
compare-elements-property: ( | ||
"#impl-SimpleTrait .item-info", | ||
"#impl-SimpleTrait + .docblock", | ||
["scrollWidth"], | ||
) | ||
assert-property: ("#impl-SimpleTrait .item-info", {"scrollWidth": "866"}) | ||
// Just to be sure we're comparing the correct "item-info": | ||
assert-text: ( | ||
"#impl-SimpleTrait .item-info", | ||
"This is supported on Android or Linux or Emscripten or DragonFly BSD", | ||
STARTS_WITH, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters