Skip to content
Snippets Groups Projects

Issue #3204015: Replace Toolbar BackboneJS usage with VanillaJS equivalent

Open Issue #3204015: Replace Toolbar BackboneJS usage with VanillaJS equivalent
14 unresolved threads
14 unresolved threads
2 files
+ 3
1
Compare changes
  • Side-by-side
  • Inline
Files
2
  • 37acacd6
    Issue #3227821 by wtrv: Broken svg element with "Auto convert linebreaks" (autop) filter · 37acacd6
    Alex Pott authored
    (cherry picked from commit b3a30bae)
@@ -336,12 +336,14 @@ public function testLineBreakFilter() {
<pre>aaa\nbbb\n\nccc</pre>
<object>aaa\nbbb\n\nccc</object>
<iframe>aaa\nbbb\n\nccc</iframe>
<svg>aaa\nbbb\n\nccc</svg>
" => [
"<script>aaa\nbbb\n\nccc</script>" => TRUE,
"<style>aaa\nbbb\n\nccc</style>" => TRUE,
"<pre>aaa\nbbb\n\nccc</pre>" => TRUE,
"<object>aaa\nbbb\n\nccc</object>" => TRUE,
"<iframe>aaa\nbbb\n\nccc</iframe>" => TRUE,
"<svg>aaa\nbbb\n\nccc</svg>" => TRUE,
],
// Skip comments entirely.
"One. <!-- comment --> Two.\n<!--\nThree.\n-->\n" => [
Loading