diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-08-22 13:03:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-22 13:03:35 -0400 |
commit | 1f564b94cb01c3ef6630dbd897ed640f4ac9cc18 (patch) | |
tree | 7ed3a0966aa7908ec54399a0404524cec906c021 /test/data/html/test-document2-script.js | |
parent | c26c4ae0cb2e8516d79e827e7f76a5974fffdae4 (diff) |
XMLDocument handling (#738)
* Add tests for SVGs
* Add more null checks for Frontend._popup
* Use null popup when on an XMLDocument
Diffstat (limited to 'test/data/html/test-document2-script.js')
-rw-r--r-- | test/data/html/test-document2-script.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/data/html/test-document2-script.js b/test/data/html/test-document2-script.js index ab516a4e..01bc211f 100644 --- a/test/data/html/test-document2-script.js +++ b/test/data/html/test-document2-script.js @@ -58,6 +58,10 @@ function setup(container, fullscreenElement=null) { if (template !== null && templateContentContainer !== null) { const mode = container.dataset.shadowMode; const shadow = templateContentContainer.attachShadow({mode}); + + const containerStyles = document.querySelector('#container-styles'); + shadow.appendChild(containerStyles.cloneNode(true)); + const content = document.importNode(template.content, true); setup(content); shadow.appendChild(content); |