+ <%= f = form_for a %>
+ <%= text_input f, :name %>
+
+
+
+
+ <%= f = form_for b %>
+ <%= text_input f, :name %>
+
+
+
+ <%= fs = form_for c %>
+ <%= text_input f, :name %>
+
+
+
+
+
+=====================================output=====================================
+
+ <%= f = form_for a %>
+ <%= text_input f, :name %>
+
+
+
+
+ <%= f = form_for b %>
+ <%= text_input f, :name %>
+
+
+
+ <%= fs = form_for c %>
+ <%= text_input f, :name %>
+
+
+
+
+
+================================================================================
+`;
+
exports[`multiline.html.eex 1`] = `
====================================options=====================================
parsers: ["eex"]
diff --git a/tests/expressions/liveview_form_for.html.leex b/tests/expressions/liveview_form_for.html.leex
new file mode 100644
index 0000000..1a9e3a6
--- /dev/null
+++ b/tests/expressions/liveview_form_for.html.leex
@@ -0,0 +1,18 @@
+
+ <%= f = form_for a %>
+ <%= text_input f, :name %>
+
+
+
+
+ <%= f = form_for b %>
+ <%= text_input f, :name %>
+
+
+
+ <%= fs = form_for c %>
+ <%= text_input f, :name %>
+
+
+
+