| Index: LayoutTests/fast/text/inline-block-in-selection-root-expected.html
|
| diff --git a/LayoutTests/fast/text/inline-block-in-selection-root-expected.html b/LayoutTests/fast/text/inline-block-in-selection-root-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..23e10fbd4f6d2ba400b80a0dda77419c8a22d46c
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/text/inline-block-in-selection-root-expected.html
|
| @@ -0,0 +1,12 @@
|
| +<!DOCTYPE html>
|
| +<div id="start">xx</div>
|
| +<div style="font-family: monospace">inline block inside selection root</div>
|
| +<div id="end">xx</div>
|
| +<script>
|
| +
|
| +var start = document.querySelector('#start'),
|
| + end = document.querySelector('#end');
|
| +getSelection().setBaseAndExtent(start.firstChild, 0, end.firstChild, 2);
|
| +focus();
|
| +
|
| +</script>
|
|
|