From c60418555e4c2f62b1b2469d03d2eea6e5fd6781 Mon Sep 17 00:00:00 2001 From: Richard Harris Date: Mon, 18 May 2020 21:59:54 -0400 Subject: [PATCH] add failing test for #4852 --- .../samples/raw-mustaches-td-tr/_config.js | 18 ++++++++++++++++++ .../samples/raw-mustaches-td-tr/main.svelte | 12 ++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 test/runtime/samples/raw-mustaches-td-tr/_config.js create mode 100644 test/runtime/samples/raw-mustaches-td-tr/main.svelte diff --git a/test/runtime/samples/raw-mustaches-td-tr/_config.js b/test/runtime/samples/raw-mustaches-td-tr/_config.js new file mode 100644 index 0000000000..dfcb1ce0f0 --- /dev/null +++ b/test/runtime/samples/raw-mustaches-td-tr/_config.js @@ -0,0 +1,18 @@ +export default { + props: { + raw: "12", + }, + + html: ` + + + + + + + + + +
57
12
+ `, +}; diff --git a/test/runtime/samples/raw-mustaches-td-tr/main.svelte b/test/runtime/samples/raw-mustaches-td-tr/main.svelte new file mode 100644 index 0000000000..07d7299e43 --- /dev/null +++ b/test/runtime/samples/raw-mustaches-td-tr/main.svelte @@ -0,0 +1,12 @@ + + + + + + + + {@html raw} + +
57
\ No newline at end of file