| Index: Source/web/tests/data/composited_selection_bounds_editable_div.html
 | 
| diff --git a/Source/web/tests/data/composited_selection_bounds_editable_div.html b/Source/web/tests/data/composited_selection_bounds_editable_div.html
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..ddd72009e7f844c0e047c1d4d3e78887a90ff7b0
 | 
| --- /dev/null
 | 
| +++ b/Source/web/tests/data/composited_selection_bounds_editable_div.html
 | 
| @@ -0,0 +1,21 @@
 | 
| +<style>
 | 
| +    @font-face {
 | 
| +        font-family: ahem;
 | 
| +        src: url(Ahem.ttf);
 | 
| +    }
 | 
| +    * {
 | 
| +        font-family: ahem;
 | 
| +    }
 | 
| +</style>
 | 
| +<div contentEditable="true">
 | 
| +    The quick brown fox jumped over the lazy dog.
 | 
| +</div>
 | 
| +<script>
 | 
| +    var textNode = document.getElementById("text");
 | 
| +    textNode.focus();
 | 
| +
 | 
| +    var expectEditable = true;
 | 
| +    var expectEmptyTextFormControl = false;
 | 
| +    window.expectedResult = [document, 11, 11, 11, 25, document, 11, 11, 11, 25, expectEditable, expectEmptyTextFormControl];
 | 
| +</script>
 | 
| +
 | 
| 
 |