diff options
Diffstat (limited to 'testing/web-platform/tests/selection/selection-shadow-dom-crash-print.html')
-rw-r--r-- | testing/web-platform/tests/selection/selection-shadow-dom-crash-print.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/web-platform/tests/selection/selection-shadow-dom-crash-print.html b/testing/web-platform/tests/selection/selection-shadow-dom-crash-print.html new file mode 100644 index 0000000000..cf62609173 --- /dev/null +++ b/testing/web-platform/tests/selection/selection-shadow-dom-crash-print.html @@ -0,0 +1,18 @@ +<!doctype html> +<title>Printing with odd selections doesn't crash</title> +<!-- Really a crashtest but since we can't really have print crashtests, we assert that we print something --> +<link rel="mismatch" href="/css/reference/blank.html"> +<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1672856"> +<script> +function go() { + var x = document.getSelection() + x.extend(b) + x.modify("move", "left", "word") + a.remove() +} +</script> +<body onload=go()> +<audio id="a" controls=""> +<progress contentEditable> +</audio> +<li id="b">x</li> |