+ $this->assertStringContainsString($includeTag, $page->html);
+ $this->assertEquals('', $page->text);
+ }
+
+ public function test_page_includes_do_not_break_tables()
+ {
+ $page = Page::first();
+ $secondPage = Page::where('id', '!=', $page->id)->first();
+
+ $content = '<table id="table"><tbody><tr><td>test</td></tr></tbody></table>';
+ $secondPage->html = $content;
+ $secondPage->save();
+
+ $page->html = "{{@{$secondPage->id}#table}}";
+ $page->save();
+
+ $this->asEditor();
+ $pageResp = $this->get($page->getUrl());
+ $pageResp->assertSee($content);
+ }
+
+ public function test_page_content_scripts_removed_by_default()
+ {
+ $this->asEditor();
+ $page = Page::first();
+ $script = 'abc123<script>console.log("hello-test")</script>abc123';
+ $page->html = "escape {$script}";
+ $page->save();
+
+ $pageView = $this->get($page->getUrl());
+ $pageView->assertStatus(200);
+ $pageView->assertDontSee($script);
+ $pageView->assertSee('abc123abc123');