summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-3038.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/issue-3038.rs')
-rw-r--r--src/tools/rustfmt/tests/target/issue-3038.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/issue-3038.rs b/src/tools/rustfmt/tests/target/issue-3038.rs
new file mode 100644
index 000000000..3c398b825
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-3038.rs
@@ -0,0 +1,29 @@
+impl HTMLTableElement {
+ fn func() {
+ if number_of_row_elements == 0 {
+ if let Some(last_tbody) = node
+ .rev_children()
+ .filter_map(DomRoot::downcast::<Element>)
+ .find(|n| {
+ n.is::<HTMLTableSectionElement>() && n.local_name() == &local_name!("tbody")
+ })
+ {
+ last_tbody
+ .upcast::<Node>()
+ .AppendChild(new_row.upcast::<Node>())
+ .expect("InsertRow failed to append first row.");
+ }
+ }
+
+ if number_of_row_elements == 0 {
+ if let Some(last_tbody) = node.find(|n| {
+ n.is::<HTMLTableSectionElement>() && n.local_name() == &local_name!("tbody")
+ }) {
+ last_tbody
+ .upcast::<Node>()
+ .AppendChild(new_row.upcast::<Node>())
+ .expect("InsertRow failed to append first row.");
+ }
+ }
+ }
+}