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-frame2.svg | |
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-frame2.svg')
-rw-r--r-- | test/data/html/test-document2-frame2.svg | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/data/html/test-document2-frame2.svg b/test/data/html/test-document2-frame2.svg new file mode 100644 index 00000000..380eab97 --- /dev/null +++ b/test/data/html/test-document2-frame2.svg @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<style> +:root { + background-color: #f8f8f8; +} +text { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + fill: #000000; + dominant-baseline: hanging; +} +</style> +<text x="7" y="12">ありがとう</text> +</svg>
\ No newline at end of file |