+ public function test_saving_page_with_includes()
+ {
+ $page = Page::first();
+ $secondPage = Page::where('id', '!=', $page->id)->first();
+
+ $this->asEditor();
+ $includeTag = '{{@' . $secondPage->id . '}}';
+ $page->html = '<p>' . $includeTag . '</p>';
+
+ $resp = $this->put($page->getUrl(), ['name' => $page->name, 'html' => $page->html, 'summary' => '']);
+
+ $resp->assertStatus(302);
+
+ $page = Page::find($page->id);
+ $this->assertContains($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->assertDontSee($script);
+ $pageView->assertSee('abc123abc123');
+ }
+
+ public function test_page_inline_on_attributes_removed_by_default()
+ {
+ $this->asEditor();
+ $page = Page::first();
+ $script = '<p onmouseenter="console.log(\'test\')">Hello</p>';
+ $page->html = "escape {$script}";
+ $page->save();
+
+ $pageView = $this->get($page->getUrl());
+ $pageView->assertDontSee($script);
+ $pageView->assertSee('<p>Hello</p>');
+ }
+
+ public function test_page_content_scripts_show_when_configured()